Trait cdrs::FromCursor [] [src]

pub trait FromCursor {
    fn from_cursor(_: &mut Cursor<Vec<u8>>) -> Self;
}

FromCursor should be used to get parsed structure from an io:Cursor wich bound to an array of bytes.

Required Methods

It should return an implementor from an io::Cursor over an array of bytes.

Implementors