> ## Documentation Index
> Fetch the complete documentation index at: https://docs.starknet.io/llms.txt
> Use this file to discover all available pages before exploring further.

# core::nullable::FromNullableResult

Represents the result of matching a `Nullable` value.
Used to safely handle both null and non-null cases when using `match_nullable` on a
`Nullable`.

## Signature

```rust theme={null}
pub enum FromNullableResult {
    Null,
    NotNull: Box,
}
```

## Variants

### Null

Represents a null value

#### Signature

```rust theme={null}
Null
```

### NotNull

The boxed value when not null

#### Signature

```rust theme={null}
NotNull: Box
```
