Trait bitstream_io::Numeric [] [src]

pub trait Numeric: Sized + Copy + Default + Debug + Shl<u32, Output=Self> + ShlAssign<u32> + Shr<u32, Output=Self> + ShrAssign<u32> + Rem<Self, Output=Self> + RemAssign<Self> + BitOrAssign<Self> {
    fn one() -> Self;
    fn is_zero(self) -> bool;
    fn from_u8(u: u8) -> Self;
    fn to_u8(self) -> u8;
}

This trait extends many common integer types (both unsigned and signed) with a few trivial methods so that they can be used with the bitstream handling traits.

Required Methods

The value of 1 in this type

Returns true if this value is 0, in its type

Returns a u8 value in this type

Assuming 0 <= value < 256, returns this value as a u8 type

Implementors