Enum ion_binary_rs::NullIonValue [−][src]
pub enum NullIonValue {
Show variants
Null,
Bool,
Integer,
Float,
Decimal,
DateTime,
String,
Symbol,
Clob,
Blob,
List,
SExpr,
Struct,
Annotation,
}Expand description
Instead of wrapping each IonValue in an Option in order to represent the null value, we opted to join all Null values in the IonValue::Null(_) which contains this struct. Here you can check what kind of null you got. We do this because we believe is more ergonomic and simplifies the API handling.
Variants
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for NullIonValueimpl Send for NullIonValueimpl Sync for NullIonValueimpl Unpin for NullIonValueimpl UnwindSafe for NullIonValueBlanket Implementations
Mutably borrows from an owned value. Read more
type Output = T
type Output = TShould always be Self