pub enum SchemaValueType {
String,
Integer,
Float,
Boolean,
Url,
Email,
}Variants§
Trait Implementations§
Source§impl Clone for SchemaValueType
impl Clone for SchemaValueType
Source§fn clone(&self) -> SchemaValueType
fn clone(&self) -> SchemaValueType
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 SchemaValueType
impl Debug for SchemaValueType
Source§impl Default for SchemaValueType
impl Default for SchemaValueType
Source§fn default() -> SchemaValueType
fn default() -> SchemaValueType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SchemaValueType
impl<'de> Deserialize<'de> for SchemaValueType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SchemaValueType
impl RefUnwindSafe for SchemaValueType
impl Send for SchemaValueType
impl Sync for SchemaValueType
impl Unpin for SchemaValueType
impl UnwindSafe for SchemaValueType
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