pub enum SchemaType {
Show 16 variants
String,
Number,
Integer,
Boolean,
Null,
DateTime,
Date,
Uuid,
Email,
Url,
Enum(Vec<String>),
Array(Box<SchemaType>),
Object(ObjectType),
Optional(Box<SchemaType>),
Union(Vec<SchemaType>),
Any,
}Variants§
String
Number
Integer
Boolean
Null
DateTime
Date
Uuid
Url
Enum(Vec<String>)
Array(Box<SchemaType>)
Object(ObjectType)
Optional(Box<SchemaType>)
Union(Vec<SchemaType>)
Any
Trait Implementations§
Source§impl Clone for SchemaType
impl Clone for SchemaType
Source§fn clone(&self) -> SchemaType
fn clone(&self) -> SchemaType
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 SchemaType
impl Debug for SchemaType
Source§impl PartialEq for SchemaType
impl PartialEq for SchemaType
impl StructuralPartialEq for SchemaType
Auto Trait Implementations§
impl Freeze for SchemaType
impl RefUnwindSafe for SchemaType
impl Send for SchemaType
impl Sync for SchemaType
impl Unpin for SchemaType
impl UnwindSafe for SchemaType
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