Skip to main content

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.

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

pub enum FromNullableResult {
    Null,
    NotNull: Box,
}

Variants

Null

Represents a null value

Signature

Null

NotNull

The boxed value when not null

Signature

NotNull: Box