Struct preserves::value::domain::ViaCodec

source ·
pub struct ViaCodec<C>(/* private fields */);
Expand description

If some C implements DomainDecode but not DomainParse, or vice versa, use ViaCodec to promote the one to the other. Construct instances with ViaCodec::new.

Implementations§

source§

impl<C> ViaCodec<C>

source

pub fn new(c: C) -> Self

Constructs a ViaCodec wrapper around an underlying codec of type C.

Trait Implementations§

source§

impl<D: Embeddable, C: DomainParse<D>> DomainDecode<D> for ViaCodec<C>

source§

fn decode_embedded<'de, 'src, S: BinarySource<'de>>( &mut self, src: &'src mut S, read_annotations: bool ) -> Result<D>

source§

impl<D: Embeddable, C: DomainDecode<D>> DomainParse<D> for ViaCodec<C>

source§

fn parse_embedded(&mut self, v: &IOValue) -> Result<D>

Auto Trait Implementations§

§

impl<C> Freeze for ViaCodec<C>
where C: Freeze,

§

impl<C> RefUnwindSafe for ViaCodec<C>
where C: RefUnwindSafe,

§

impl<C> Send for ViaCodec<C>
where C: Send,

§

impl<C> Sync for ViaCodec<C>
where C: Sync,

§

impl<C> Unpin for ViaCodec<C>
where C: Unpin,

§

impl<C> UnwindSafe for ViaCodec<C>
where C: 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>,

§

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.