---
outline: deep
---

# Option

## Overview

```ts
export type Option<T> = Some<T> | None
```

See also the **[Option](https://doc.rust-lang.org/std/option/index.html)**

## Methods

## Functions
