Trait cdrs::IntoBytes [] [src]

pub trait IntoBytes {
    fn into_cbytes(&self) -> Vec<u8>;
}

IntoBytes should be used to convert a structure into array of bytes.

Required Methods

It should convert a struct into an array of bytes.

Implementors