pub enum SdmTy {
Show 23 variants Bool, I8, U8, Varint(Varint), F32, F64, Char, String, ByteArray, Option(&'static NamedType), Unit, UnitStruct, UnitVariant, NewtypeStruct(&'static NamedType), NewtypeVariant(&'static NamedType), Seq(&'static NamedType), Tuple(&'static [&'static NamedType]), TupleStruct(&'static [&'static NamedType]), TupleVariant(&'static [&'static NamedType]), Map { key: &'static NamedType, val: &'static NamedType, }, Struct(&'static [&'static NamedValue]), StructVariant(&'static [&'static NamedValue]), Enum(&'static [&'static NamedVariant]),
}
Available on crate feature experimental-derive only.
Expand description

Serde Data Model Types (and friends)

Variants§

§

Bool

The bool Serde Data Model Type

§

I8

The i8 Serde Data Model Type

§

U8

The u8 Serde Data Model Type

§

Varint(Varint)

The Serde Data Model Type for variably length encoded integers

§

F32

The f32 Serde Data Model Type

§

F64

The `f64 Serde Data Model Type

§

Char

The char Serde Data Model Type

§

String

The String Serde Data Model Type

§

ByteArray

The [u8; N] Serde Data Model Type

§

Option(&'static NamedType)

The Option<T> Serde Data Model Type

§

Unit

The () Serde Data Model Type

§

UnitStruct

The “unit struct” Serde Data Model Type

§

UnitVariant

The “unit variant” Serde Data Model Type

§

NewtypeStruct(&'static NamedType)

The “newtype struct” Serde Data Model Type

§

NewtypeVariant(&'static NamedType)

The “newtype variant” Serde Data Model Type

§

Seq(&'static NamedType)

The “Sequence” Serde Data Model Type

§

Tuple(&'static [&'static NamedType])

The “Tuple” Serde Data Model Type

§

TupleStruct(&'static [&'static NamedType])

The “Tuple Struct” Serde Data Model Type

§

TupleVariant(&'static [&'static NamedType])

The “Tuple Variant” Serde Data Model Type

§

Map

Fields

§key: &'static NamedType

The map “Key” type

§val: &'static NamedType

The map “Value” type

The “Map” Serde Data Model Type

§

Struct(&'static [&'static NamedValue])

The “Struct” Serde Data Model Type

§

StructVariant(&'static [&'static NamedValue])

The “Struct Variant” Serde Data Model Type

§

Enum(&'static [&'static NamedVariant])

The “Enum” Serde Data Model Type (which contains any of the “Variant” types)

Trait Implementations§

source§

impl Clone for SdmTy

source§

fn clone(&self) -> SdmTy

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SdmTy

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for SdmTy

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<SdmTy> for SdmTy

source§

fn eq(&self, other: &SdmTy) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for SdmTy

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for SdmTy

source§

impl StructuralEq for SdmTy

source§

impl StructuralPartialEq for SdmTy

Auto Trait Implementations§

§

impl RefUnwindSafe for SdmTy

§

impl Send for SdmTy

§

impl Sync for SdmTy

§

impl Unpin for SdmTy

§

impl UnwindSafe for SdmTy

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.