Struct rustbus::wire::marshal::traits::OptimizedMarshal[][src]

pub struct OptimizedMarshal<'a, E: Copy + Marshal>(pub &'a [E]);

!!! This assumes that you are marshalling to the platforms byteorder !!!

It just memcpy’s the content of the array into the message. This is fine for all integer types, but you cannot use it for structs, even if they are copy! They might have padding to be correctly aligned in the slice. I would recommend to only use this for marshalling big integer arrays but I cannot express this in the type system cleanly so here is a comment.

Trait Implementations

impl<'a, E: Copy + Marshal> Marshal for OptimizedMarshal<'a, E>[src]

impl<'a, E: Copy + Marshal> Signature for OptimizedMarshal<'a, E>[src]

Auto Trait Implementations

impl<'a, E> RefUnwindSafe for OptimizedMarshal<'a, E> where
    E: RefUnwindSafe

impl<'a, E> Send for OptimizedMarshal<'a, E> where
    E: Sync

impl<'a, E> Sync for OptimizedMarshal<'a, E> where
    E: Sync

impl<'a, E> Unpin for OptimizedMarshal<'a, E>

impl<'a, E> UnwindSafe for OptimizedMarshal<'a, E> where
    E: RefUnwindSafe

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.