Struct netlink_packet_core::NetlinkMessage
source · [−]pub struct NetlinkMessage<I> {
pub header: NetlinkHeader,
pub payload: NetlinkPayload<I>,
}
Expand description
Represent a netlink message.
Fields
header: NetlinkHeader
Message header (this is common to all the netlink protocols)
payload: NetlinkPayload<I>
Inner message, which depends on the netlink protocol being used.
Implementations
sourceimpl<I> NetlinkMessage<I>
impl<I> NetlinkMessage<I>
sourcepub fn new(header: NetlinkHeader, payload: NetlinkPayload<I>) -> Self
pub fn new(header: NetlinkHeader, payload: NetlinkPayload<I>) -> Self
Create a new netlink message from the given header and payload
sourcepub fn into_parts(self) -> (NetlinkHeader, NetlinkPayload<I>)
pub fn into_parts(self) -> (NetlinkHeader, NetlinkPayload<I>)
Consume this message and return its header and payload
sourceimpl<I> NetlinkMessage<I> where
I: NetlinkDeserializable,
impl<I> NetlinkMessage<I> where
I: NetlinkDeserializable,
sourcepub fn deserialize(buffer: &[u8]) -> Result<Self, DecodeError>
pub fn deserialize(buffer: &[u8]) -> Result<Self, DecodeError>
Parse the given buffer as a netlink message
sourceimpl<I> NetlinkMessage<I> where
I: NetlinkSerializable,
impl<I> NetlinkMessage<I> where
I: NetlinkSerializable,
sourcepub fn buffer_len(&self) -> usize
pub fn buffer_len(&self) -> usize
Return the length of this message in bytes
sourcepub fn serialize(&self, buffer: &mut [u8])
pub fn serialize(&self, buffer: &mut [u8])
Serialize this message and write the serialized data into the
given buffer. buffer
must big large enough for the whole
message to fit, otherwise, this method will panic. To know how
big the serialized message is, call buffer_len()
.
Panic
This method panics if the buffer is not big enough.
sourcepub fn finalize(&mut self)
pub fn finalize(&mut self)
Ensure the header (NetlinkHeader
) is consistent with the payload (NetlinkPayload
):
- compute the payload length and set the header’s length field
- check the payload type and set the header’s message type field accordingly
If you are not 100% sure the header is correct, this method should be called before calling
Emitable::emit()
, as it could panic if the header is
inconsistent with the rest of the message.
Trait Implementations
sourceimpl<I: Clone> Clone for NetlinkMessage<I>
impl<I: Clone> Clone for NetlinkMessage<I>
sourcefn clone(&self) -> NetlinkMessage<I>
fn clone(&self) -> NetlinkMessage<I>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<I: Debug> Debug for NetlinkMessage<I>
impl<I: Debug> Debug for NetlinkMessage<I>
sourceimpl<I> Emitable for NetlinkMessage<I> where
I: NetlinkSerializable,
impl<I> Emitable for NetlinkMessage<I> where
I: NetlinkSerializable,
sourceimpl<T> From<T> for NetlinkMessage<T> where
T: Into<NetlinkPayload<T>>,
impl<T> From<T> for NetlinkMessage<T> where
T: Into<NetlinkPayload<T>>,
sourceimpl<'buffer, B, I> Parseable<NetlinkBuffer<&'buffer B>> for NetlinkMessage<I> where
B: AsRef<[u8]> + 'buffer,
I: NetlinkDeserializable,
impl<'buffer, B, I> Parseable<NetlinkBuffer<&'buffer B>> for NetlinkMessage<I> where
B: AsRef<[u8]> + 'buffer,
I: NetlinkDeserializable,
sourcefn parse(buf: &NetlinkBuffer<&'buffer B>) -> Result<Self, DecodeError>
fn parse(buf: &NetlinkBuffer<&'buffer B>) -> Result<Self, DecodeError>
Deserialize the current type.
sourceimpl<I: PartialEq> PartialEq<NetlinkMessage<I>> for NetlinkMessage<I>
impl<I: PartialEq> PartialEq<NetlinkMessage<I>> for NetlinkMessage<I>
sourcefn eq(&self, other: &NetlinkMessage<I>) -> bool
fn eq(&self, other: &NetlinkMessage<I>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &NetlinkMessage<I>) -> bool
fn ne(&self, other: &NetlinkMessage<I>) -> bool
This method tests for !=
.
impl<I: Eq> Eq for NetlinkMessage<I>
impl<I> StructuralEq for NetlinkMessage<I>
impl<I> StructuralPartialEq for NetlinkMessage<I>
Auto Trait Implementations
impl<I> RefUnwindSafe for NetlinkMessage<I> where
I: RefUnwindSafe,
impl<I> Send for NetlinkMessage<I> where
I: Send,
impl<I> Sync for NetlinkMessage<I> where
I: Sync,
impl<I> Unpin for NetlinkMessage<I> where
I: Unpin,
impl<I> UnwindSafe for NetlinkMessage<I> where
I: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more