Trait nock::DigitSlice [] [src]

pub trait DigitSlice {
    fn as_digits<'a>(&'a self) -> &'a [u8];
}

Types that can be interpreted as arbitrary-length little-endian base-256 integers.

Required Methods

Return a little-endian byte slice corresponding to an in-memory unsigned integer value.

Will fail horribly if your hardware is not little-endian.

Implementors