Struct rustdds::serialization::CDRDeserializerAdapter[][src]

pub struct CDRDeserializerAdapter<D> { /* fields omitted */ }

This type adapts CDR_deserializer (which implements serde::Deserializer) to work as a DeserializerAdapter. CDR_deserializer cannot directly implement the trait itself, because CDR_deserializer has the type parameter BO open, and the adapter needs to be bi-endian.

Trait Implementations

impl<D> DeserializerAdapter<D> for CDRDeserializerAdapter<D> where
    D: DeserializeOwned
[src]

Auto Trait Implementations

impl<D> RefUnwindSafe for CDRDeserializerAdapter<D> where
    D: RefUnwindSafe
[src]

impl<D> Send for CDRDeserializerAdapter<D> where
    D: Send
[src]

impl<D> Sync for CDRDeserializerAdapter<D> where
    D: Sync
[src]

impl<D> Unpin for CDRDeserializerAdapter<D> where
    D: Unpin
[src]

impl<D> UnwindSafe for CDRDeserializerAdapter<D> where
    D: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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