Struct netlink_packet_route::address::AddressMessage
source · #[non_exhaustive]pub struct AddressMessage {
pub header: AddressHeader,
pub attributes: Vec<AddressAttribute>,
}
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: AddressHeader
§attributes: Vec<AddressAttribute>
Trait Implementations§
source§impl Clone for AddressMessage
impl Clone for AddressMessage
source§fn clone(&self) -> AddressMessage
fn clone(&self) -> AddressMessage
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 AddressMessage
impl Debug for AddressMessage
source§impl Default for AddressMessage
impl Default for AddressMessage
source§fn default() -> AddressMessage
fn default() -> AddressMessage
Returns the “default value” for a type. Read more
source§impl Emitable for AddressMessage
impl Emitable for AddressMessage
source§impl<'a, T: AsRef<[u8]> + 'a> Parseable<AddressMessageBuffer<&'a T>> for AddressMessage
impl<'a, T: AsRef<[u8]> + 'a> Parseable<AddressMessageBuffer<&'a T>> for AddressMessage
source§fn parse(buf: &AddressMessageBuffer<&'a T>) -> Result<Self, DecodeError>
fn parse(buf: &AddressMessageBuffer<&'a T>) -> Result<Self, DecodeError>
Deserialize the current type.
source§impl PartialEq for AddressMessage
impl PartialEq for AddressMessage
source§fn eq(&self, other: &AddressMessage) -> bool
fn eq(&self, other: &AddressMessage) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for AddressMessage
impl StructuralEq for AddressMessage
impl StructuralPartialEq for AddressMessage
Auto Trait Implementations§
impl RefUnwindSafe for AddressMessage
impl Send for AddressMessage
impl Sync for AddressMessage
impl Unpin for AddressMessage
impl UnwindSafe for AddressMessage
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