Enum ion_binary_rs::NullIonValue [−][src]
pub enum NullIonValue {
Show 14 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
Null
Bool
Integer
Float
Decimal
DateTime
String
Symbol
Clob
Blob
List
SExpr
Struct
Annotation
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for NullIonValue
impl Send for NullIonValue
impl Sync for NullIonValue
impl Unpin for NullIonValue
impl UnwindSafe for NullIonValue
Blanket Implementations
Mutably borrows from an owned value. Read more
