Struct rustbus::wire::marshal::traits::OptimizedMarshal [−][src]
!!! 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> Marshal for OptimizedMarshal<'a, E>
[src]fn marshal(&self, ctx: &mut MarshalContext<'_, '_>) -> Result<(), Error>
[src]
fn marshal_as_variant(
&self,
ctx: &mut MarshalContext<'_, '_>
) -> Result<(), Error>
[src]
&self,
ctx: &mut MarshalContext<'_, '_>
) -> Result<(), Error>
Auto Trait Implementations
impl<'a, E> RefUnwindSafe for OptimizedMarshal<'a, E> where
E: RefUnwindSafe,
E: RefUnwindSafe,
impl<'a, E> Send for OptimizedMarshal<'a, E> where
E: Sync,
E: Sync,
impl<'a, E> Sync for OptimizedMarshal<'a, E> where
E: Sync,
E: Sync,
impl<'a, E> Unpin for OptimizedMarshal<'a, E>
impl<'a, E> UnwindSafe for OptimizedMarshal<'a, E> where
E: RefUnwindSafe,
E: RefUnwindSafe,