Struct rtnetlink::AddressHeader[][src]

pub struct AddressHeader {
    pub family: u8,
    pub prefix_len: u8,
    pub flags: u8,
    pub scope: u8,
    pub index: u32,
}

Fields

Trait Implementations

impl Debug for AddressHeader
[src]

Formats the value using the given formatter. Read more

impl PartialEq for AddressHeader
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for AddressHeader
[src]

impl Clone for AddressHeader
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Emitable for AddressHeader
[src]

Return the length of the serialized data.

Serialize this types and write the serialized data into the given buffer. Read more

impl<T: AsRef<[u8]>> Parseable<AddressHeader> for AddressBuffer<T>
[src]

Deserialize the current type.

Auto Trait Implementations