pub enum Schema {
Show 27 variants
Bool,
U8,
I8,
U16,
I16,
U32,
I32,
U64,
I64,
F32,
F64,
Date,
DateWithoutTimezone,
Time,
TimeWithoutTimezone,
DateTime,
DateTimeWithoutTimezone,
Timezone,
Decimal,
Bson,
String,
Json,
Enum,
List(Box<Schema>),
Map(Box<(Schema, Schema)>),
Group(Vec<Schema>, Option<Arc<LinkedHashMap<String, usize, FxBuildHasher>>>),
Option(Box<Schema>),
}Variants§
Bool
U8
I8
U16
I16
U32
I32
U64
I64
F32
F64
Date
DateWithoutTimezone
Time
TimeWithoutTimezone
DateTime
DateTimeWithoutTimezone
Timezone
Decimal
Bson
String
Json
Enum
List(Box<Schema>)
Map(Box<(Schema, Schema)>)
Group(Vec<Schema>, Option<Arc<LinkedHashMap<String, usize, FxBuildHasher>>>)
Option(Box<Schema>)
Trait Implementations§
impl StructuralPartialEq for Schema
Auto Trait Implementations§
impl Freeze for Schema
impl RefUnwindSafe for Schema
impl Send for Schema
impl Sync for Schema
impl Unpin for Schema
impl UnwindSafe for Schema
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<A, B> Downcast<A> for Bwhere
A: DowncastFrom<B>,
impl<A, B> Downcast<A> for Bwhere
A: DowncastFrom<B>,
fn downcast(self) -> Result<A, DowncastError>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more