Trait pnet::util::Octets [] [src]

pub trait Octets {
    type Output;
    fn octets(&self) -> Self::Output;
}

Convert value to byte array

Associated Types

Output type - bytes array

Required Methods

Return value as bytes (big-endian order)

Implementors