Struct numcodecs::StaticCodecConfig

source ·
pub struct StaticCodecConfig<'a, T: StaticCodec> {
    pub config: T::Config<'a>,
    /* private fields */
}
Expand description

Utility struct to serialize a StaticCodec’s StaticCodec::Config together with its StaticCodec::CODEC_ID

Fields§

§config: T::Config<'a>

The configration parameters

Implementations§

source§

impl<'a, T: StaticCodec> StaticCodecConfig<'a, T>

source

pub const fn new(config: T::Config<'a>) -> Self

Wraps the config so that it can be serialized together with its StaticCodec::CODEC_ID

Trait Implementations§

source§

impl<'de: 'a, 'a, T: StaticCodec> Deserialize<'de> for StaticCodecConfig<'a, T>

source§

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<'a, T: StaticCodec> From<&<T as StaticCodec>::Config<'a>> for StaticCodecConfig<'a, T>
where T::Config<'a>: Clone,

source§

fn from(config: &T::Config<'a>) -> Self

Converts to this type from the input type.
source§

impl<'a, T: StaticCodec> Serialize for StaticCodecConfig<'a, T>

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

Auto Trait Implementations§

§

impl<'a, T> Freeze for StaticCodecConfig<'a, T>
where <T as StaticCodec>::Config<'a>: Freeze,

§

impl<'a, T> RefUnwindSafe for StaticCodecConfig<'a, T>

§

impl<'a, T> Send for StaticCodecConfig<'a, T>
where <T as StaticCodec>::Config<'a>: Send,

§

impl<'a, T> Sync for StaticCodecConfig<'a, T>
where <T as StaticCodec>::Config<'a>: Sync,

§

impl<'a, T> Unpin for StaticCodecConfig<'a, T>
where <T as StaticCodec>::Config<'a>: Unpin, T: Unpin,

§

impl<'a, T> UnwindSafe for StaticCodecConfig<'a, T>
where <T as StaticCodec>::Config<'a>: UnwindSafe, T: UnwindSafe,

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, U> TryFrom<U> for T
where U: Into<T>,

source§

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>,

source§

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.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,