Enum serde_intermediate::schema::SchemaType
source · [−]pub enum SchemaType {
Tuple(SchemaTypeTuple),
Array(SchemaTypeArrayOrSlice),
Slice(SchemaTypeArrayOrSlice),
TupleStruct(SchemaTypeTuple),
Struct(SchemaTypeStruct),
Enum(SchemaTypeEnum),
}Variants
Tuple(SchemaTypeTuple)
Array(SchemaTypeArrayOrSlice)
Slice(SchemaTypeArrayOrSlice)
TupleStruct(SchemaTypeTuple)
Struct(SchemaTypeStruct)
Enum(SchemaTypeEnum)
Implementations
sourceimpl SchemaType
impl SchemaType
pub fn new_tuple(content: impl Into<SchemaTypeTuple>) -> Self
pub fn new_array(content: impl Into<SchemaTypeArrayOrSlice>) -> Self
pub fn new_slice(content: impl Into<SchemaTypeArrayOrSlice>) -> Self
pub fn new_tuple_struct(content: impl Into<SchemaTypeTuple>) -> Self
pub fn new_struct(content: impl Into<SchemaTypeStruct>) -> Self
pub fn new_enum(content: impl Into<SchemaTypeEnum>) -> Self
Trait Implementations
sourceimpl Clone for SchemaType
impl Clone for SchemaType
sourcefn clone(&self) -> SchemaType
fn clone(&self) -> SchemaType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for SchemaType
impl Debug for SchemaType
sourceimpl<'de> Deserialize<'de> for SchemaType
impl<'de> Deserialize<'de> for SchemaType
sourcefn 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
sourceimpl PartialEq<SchemaType> for SchemaType
impl PartialEq<SchemaType> for SchemaType
sourcefn eq(&self, other: &SchemaType) -> bool
fn eq(&self, other: &SchemaType) -> bool
sourceimpl Serialize for SchemaType
impl Serialize for SchemaType
impl StructuralPartialEq for SchemaType
Auto Trait Implementations
impl RefUnwindSafe for SchemaType
impl Send for SchemaType
impl Sync for SchemaType
impl Unpin for SchemaType
impl UnwindSafe for SchemaType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more