Struct rtnetlink::RouteMessage[][src]

pub struct RouteMessage {
    pub header: RouteHeader,
    pub nlas: Vec<RouteNla>,
}

Fields

Trait Implementations

impl Debug for RouteMessage
[src]

Formats the value using the given formatter. Read more

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

impl Clone for RouteMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Emitable for RouteMessage
[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<RouteMessage> for RouteBuffer<&'buffer T>
[src]

Deserialize the current type.

Auto Trait Implementations