Trait FromBitStream
trait FromBitStream
Implemented by complex types that don't require any additional context
to parse themselves from a reader. Analagous to FromStr.
Example
use ;
use ;
let mut reader = endian;
assert_eq!;
Associated Types
type ErrorError generated during parsing, such as
io::Error
Required Methods
fn from_reader<R: BitRead + ?Sized>(r: &mut R) -> Result<Self, <Self as >::Error> where Self: SizedParse Self from reader