Struct bones_schema::ser_de::SchemaDeserialize

source ·
pub struct SchemaDeserialize {
    pub deserialize_fn: for<'a, 'de> fn(_: SchemaRefMut<'a>, deserializer: &'a mut dyn Deserializer<'de>) -> Result<(), Error>,
}
Expand description

Derivable schema type_data for types that implement Deserialize.

This allows you use serde to implement custom deserialization logic instead of the default one used for #[repr(C)] structs that implement HasSchema.

Fields§

§deserialize_fn: for<'a, 'de> fn(_: SchemaRefMut<'a>, deserializer: &'a mut dyn Deserializer<'de>) -> Result<(), Error>

The function that may be used to deserialize the type.

Implementations§

source§

impl SchemaDeserialize

source

pub fn deserialize<'a, 'de, D>( &self, reference: SchemaRefMut<'a>, deserializer: D, ) -> Result<(), D::Error>
where D: Deserializer<'de>,

Use this SchemaDeserialize to deserialize data from the deserializer into the reference.

Trait Implementations§

source§

impl<T: HasSchema + for<'de> Deserialize<'de>> FromType<T> for SchemaDeserialize

source§

fn from_type() -> Self

Return the data for the type.
source§

impl HasSchema for SchemaDeserialize

source§

fn schema() -> &'static Schema

Get this type’s Schema.
source§

fn register_schema()

Register this schema with the global schema registry. Read more
source§

fn cast<T: HasSchema>(this: &Self) -> &T

Cast a reference of this type to a reference of another type with the same memory layout. Read more
source§

fn try_cast<T: HasSchema>(this: &Self) -> Result<&T, SchemaMismatchError>

Cast a reference of this type to a reference of another type with the same memory layout. Read more
source§

fn cast_mut<T: HasSchema>(this: &mut Self) -> &mut T

Cast a mutable reference of this type to a reference of another type with the same memory layout. Read more
source§

fn try_cast_mut<T: HasSchema>( this: &mut Self, ) -> Result<&mut T, SchemaMismatchError>

Cast a mutable reference of this type to a reference of another type with the same memory layout. Read more
source§

fn as_schema_ref(&self) -> SchemaRef<'_>
where Self: Sized,

Converts a reference of T to a SchemaRef
source§

fn as_schema_mut(&mut self) -> SchemaRefMut<'_>
where Self: Sized,

Converts a reference of T to a SchemaRefMut

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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> RawDrop for T

source§

unsafe fn raw_drop(ptr: *mut c_void)

Write the default value of the type to the pointer. Read more
source§

fn raw_drop_cb() -> Unsafe<&'static (dyn Fn(*mut c_void) + Sync + Send + 'static)>

Get a callback suitable for SchemaData.
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V