Expand description
Definitions for the Optional live collection.
Structs§
- Optional
- A nullable Rust value that can asynchronously change over time.
Enums§
- Init
None - Marks that the
Optionalis null only initially: once it becomes non-null it will remain non-null forever, although the non-null value may still change arbitrarily over time.
Traits§
- IsInit
None - Marker trait that is implemented for
OptionalBoundtypes that are null only initially: once the optional becomes non-null it remains non-null (or it isBounded). - Optional
Bound - A marker trait indicating the boundedness of an
Optional.