Struct rtnetlink::AddressMessage[][src]

pub struct AddressMessage {
    pub header: AddressHeader,
    pub nlas: Vec<AddressNla>,
}

Fields

Trait Implementations

impl Debug for AddressMessage
[src]

Formats the value using the given formatter. Read more

impl PartialEq for AddressMessage
[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 AddressMessage
[src]

impl Clone for AddressMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Emitable for AddressMessage
[src]

Return the length of the serialized data.

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

impl<'buffer, T: AsRef<[u8]> + 'buffer> Parseable<AddressMessage> for AddressBuffer<&'buffer T>
[src]

Deserialize the current type.

Auto Trait Implementations