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§
source§impl 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§
source§impl Clone for SchemaType
impl Clone for SchemaType
source§fn clone(&self) -> SchemaType
fn clone(&self) -> SchemaType
Returns a copy 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<'de> Deserialize<'de> for SchemaType
impl<'de> Deserialize<'de> for SchemaType
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
source§impl PartialEq<SchemaType> for SchemaType
impl PartialEq<SchemaType> for SchemaType
source§fn eq(&self, other: &SchemaType) -> bool
fn eq(&self, other: &SchemaType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl 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§
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