pub trait FromCursor {
// Required method
fn from_cursor(cursor: &mut Cursor<&[u8]>) -> Result<Self>
where Self: Sized;
}Expand description
FromCursor should be used to get parsed structure from an io:Cursor
wich bound to an array of bytes.