pub struct Nlattr<T, P> {
pub nla_len: u16,
pub nla_type: AttrType<T>,
pub nla_payload: P,
}
Expand description
Struct representing netlink attributes and payloads
Fields§
§nla_len: u16
Length of the attribute header and payload together
nla_type: AttrType<T>
Type information for the netlink attribute
nla_payload: P
Payload of the attribute - either parsed or a binary buffer
Implementations§
Source§impl<T> Nlattr<T, Buffer>where
T: NlAttrType,
impl<T> Nlattr<T, Buffer>where
T: NlAttrType,
Sourcepub fn new<P>(
nla_nested: bool,
nla_network_order: bool,
nla_type: T,
nla_payload: P,
) -> Result<Self, SerError>
pub fn new<P>( nla_nested: bool, nla_network_order: bool, nla_type: T, nla_payload: P, ) -> Result<Self, SerError>
Create a new Nlattr
with parameters for setting bitflags
in the header.
Sourcepub fn add_nested_attribute<TT, P>(
&mut self,
attr: &Nlattr<TT, P>,
) -> Result<(), SerError>where
TT: NlAttrType,
P: ToBytes,
pub fn add_nested_attribute<TT, P>(
&mut self,
attr: &Nlattr<TT, P>,
) -> Result<(), SerError>where
TT: NlAttrType,
P: ToBytes,
Add a nested attribute to the end of the payload.
Sourcepub fn get_attr_handle<R>(
&self,
) -> Result<AttrHandle<'_, GenlBuffer<R, Buffer>, Nlattr<R, Buffer>>, DeError>where
R: NlAttrType,
pub fn get_attr_handle<R>(
&self,
) -> Result<AttrHandle<'_, GenlBuffer<R, Buffer>, Nlattr<R, Buffer>>, DeError>where
R: NlAttrType,
Return an AttrHandle
for attributes nested in the given attribute payload
Sourcepub fn get_attr_handle_mut<R>(
&mut self,
) -> Result<AttrHandleMut<'_, GenlBuffer<R, Buffer>, Nlattr<R, Buffer>>, DeError>where
R: NlAttrType,
pub fn get_attr_handle_mut<R>(
&mut self,
) -> Result<AttrHandleMut<'_, GenlBuffer<R, Buffer>, Nlattr<R, Buffer>>, DeError>where
R: NlAttrType,
Return a mutable AttrHandle
for attributes nested in the given attribute payload
Trait Implementations§
Source§impl<T> Attribute<T> for Nlattr<T, Buffer>where
T: NlAttrType,
impl<T> Attribute<T> for Nlattr<T, Buffer>where
T: NlAttrType,
Source§fn get_payload_as<'a, R>(&'a self) -> Result<R, DeError>where
R: FromBytes<'a>,
fn get_payload_as<'a, R>(&'a self) -> Result<R, DeError>where
R: FromBytes<'a>,
Get an
Nlattr
payload as the
provided type parameter, R
.Source§fn get_payload_as_with_len<'a, R>(&'a self) -> Result<R, DeError>where
R: FromBytesWithInput<'a, Input = usize>,
fn get_payload_as_with_len<'a, R>(&'a self) -> Result<R, DeError>where
R: FromBytesWithInput<'a, Input = usize>,
Get an
Nlattr
payload as the
provided type parameter, R
.Source§impl<'lifetime, T: NlAttrType, P: FromBytesWithInput<'lifetime, Input = usize>> FromBytes<'lifetime> for Nlattr<T, P>
impl<'lifetime, T: NlAttrType, P: FromBytesWithInput<'lifetime, Input = usize>> FromBytes<'lifetime> for Nlattr<T, P>
Source§impl<T, P> FromIterator<Nlattr<T, P>> for GenlBuffer<T, P>
impl<T, P> FromIterator<Nlattr<T, P>> for GenlBuffer<T, P>
Source§impl<T: TypeSize, P> Header for Nlattr<T, P>
impl<T: TypeSize, P> Header for Nlattr<T, P>
Source§fn header_size() -> usize
fn header_size() -> usize
Return the size in bytes of the data structure header.
Source§impl<T: Size, P: Size> Size for Nlattr<T, P>
impl<T: Size, P: Size> Size for Nlattr<T, P>
Source§fn unpadded_size(&self) -> usize
fn unpadded_size(&self) -> usize
Size of the unpadded data structure. This will usually
only be unaligned for variable length types like
strings or byte buffers.
Source§fn padded_size(&self) -> usize
fn padded_size(&self) -> usize
Get the size of of the payload and align it to
the required netlink byte alignment.
impl<T: Eq, P: Eq> Eq for Nlattr<T, P>
impl<T, P> StructuralPartialEq for Nlattr<T, P>
Auto Trait Implementations§
impl<T, P> Freeze for Nlattr<T, P>
impl<T, P> RefUnwindSafe for Nlattr<T, P>where
P: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, P> Send for Nlattr<T, P>
impl<T, P> Sync for Nlattr<T, P>
impl<T, P> Unpin for Nlattr<T, P>
impl<T, P> UnwindSafe for Nlattr<T, P>where
P: UnwindSafe,
T: UnwindSafe,
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