Struct netlink_packet_route::rtnl::link::LinkMessage
source · #[non_exhaustive]pub struct LinkMessage {
pub header: LinkHeader,
pub nlas: Vec<Nla>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.header: LinkHeader§nlas: Vec<Nla>Trait Implementations§
source§impl Clone for LinkMessage
impl Clone for LinkMessage
source§fn clone(&self) -> LinkMessage
fn clone(&self) -> LinkMessage
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for LinkMessage
impl Debug for LinkMessage
source§impl Default for LinkMessage
impl Default for LinkMessage
source§fn default() -> LinkMessage
fn default() -> LinkMessage
Returns the “default value” for a type. Read more
source§impl Emitable for LinkMessage
impl Emitable for LinkMessage
source§impl<'a, T: AsRef<[u8]> + 'a> Parseable<LinkMessageBuffer<&'a T>> for LinkMessage
impl<'a, T: AsRef<[u8]> + 'a> Parseable<LinkMessageBuffer<&'a T>> for LinkMessage
source§fn parse(buf: &LinkMessageBuffer<&'a T>) -> Result<Self, DecodeError>
fn parse(buf: &LinkMessageBuffer<&'a T>) -> Result<Self, DecodeError>
Deserialize the current type.
source§impl PartialEq<LinkMessage> for LinkMessage
impl PartialEq<LinkMessage> for LinkMessage
source§fn eq(&self, other: &LinkMessage) -> bool
fn eq(&self, other: &LinkMessage) -> bool
This method tests for
self and other values to be equal, and is used
by ==.