pub enum SchemaIncomplete {
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<SchemaIncomplete>),
Map(Box<(SchemaIncomplete, SchemaIncomplete)>),
Group(Option<(Vec<SchemaIncomplete>, Option<Arc<LinkedHashMap<String, usize, FxBuildHasher>>>)>),
Option(Box<SchemaIncomplete>),
}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<SchemaIncomplete>)
Map(Box<(SchemaIncomplete, SchemaIncomplete)>)
Group(Option<(Vec<SchemaIncomplete>, Option<Arc<LinkedHashMap<String, usize, FxBuildHasher>>>)>)
Option(Box<SchemaIncomplete>)
Trait Implementations§
Source§impl Clone for SchemaIncomplete
impl Clone for SchemaIncomplete
Source§fn clone(&self) -> SchemaIncomplete
fn clone(&self) -> SchemaIncomplete
Returns a duplicate 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 Debug for SchemaIncomplete
impl Debug for SchemaIncomplete
Source§impl PartialEq for SchemaIncomplete
impl PartialEq for SchemaIncomplete
impl StructuralPartialEq for SchemaIncomplete
Auto Trait Implementations§
impl Freeze for SchemaIncomplete
impl RefUnwindSafe for SchemaIncomplete
impl Send for SchemaIncomplete
impl Sync for SchemaIncomplete
impl Unpin for SchemaIncomplete
impl UnwindSafe for SchemaIncomplete
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