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

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

Convert value to byte array

Associated Types

type Output

Output type - bytes array

Required Methods

fn octets(&self) -> Self::Output

Return value as bytes (big-endian order)

Implementors