pub struct NetlinkMessage<'a> {
pub _type: u16,
pub flags: u16,
pub seq: u32,
pub pid: u32,
pub data: &'a [u8],
}
Expand description
A single netlink message, including its header and data.
Fields§
§_type: u16
§flags: u16
§seq: u32
§pid: u32
§data: &'a [u8]
Auto Trait Implementations§
impl<'a> RefUnwindSafe for NetlinkMessage<'a>
impl<'a> Send for NetlinkMessage<'a>
impl<'a> Sync for NetlinkMessage<'a>
impl<'a> Unpin for NetlinkMessage<'a>
impl<'a> UnwindSafe for NetlinkMessage<'a>
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