Struct netlink_packet_route::link::LinkMessage
source · #[non_exhaustive]pub struct LinkMessage {
pub header: LinkHeader,
pub attributes: Vec<LinkAttribute>,
}
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
§attributes: Vec<LinkAttribute>
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 for LinkMessage
impl PartialEq 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 ==
.impl Eq for LinkMessage
impl StructuralEq for LinkMessage
impl StructuralPartialEq for LinkMessage
Auto Trait Implementations§
impl RefUnwindSafe for LinkMessage
impl Send for LinkMessage
impl Sync for LinkMessage
impl Unpin for LinkMessage
impl UnwindSafe for LinkMessage
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more