Enum rorm::representations::FFINullType
source · #[repr(C)]
pub enum FFINullType {
String,
I64,
I32,
I16,
Bool,
F64,
F32,
Binary,
NaiveTime,
NaiveDate,
NaiveDateTime,
Choice,
}
Expand description
Representation of a [NullType]
Variants§
String
String representation
I64
i64 representation
I32
i32 representation
I16
i16 representation
Bool
Bool representation
F64
f64 representation
F32
f32 representation
Binary
binary representation
NaiveTime
Naive Time representation
NaiveDate
Naive Date representation
NaiveDateTime
Naive DateTime representation
Choice
NULL choice type representation
Trait Implementations§
source§impl Clone for FFINullType
impl Clone for FFINullType
source§fn clone(&self) -> FFINullType
fn clone(&self) -> FFINullType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl From<FFINullType> for NullType
impl From<FFINullType> for NullType
source§fn from(value: FFINullType) -> Self
fn from(value: FFINullType) -> Self
Converts to this type from the input type.