pub struct NflogTlv<'a> {
pub l: u16,
pub t: u16,
pub v: &'a [u8],
}Available on crate feature
data only.Fields§
§l: u16Length of data (including 4 bytes for length and types)
t: u16Type of data (see NfAttrType)
v: &'a [u8]Data
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for NflogTlv<'a>
impl<'a> RefUnwindSafe for NflogTlv<'a>
impl<'a> Send for NflogTlv<'a>
impl<'a> Sync for NflogTlv<'a>
impl<'a> Unpin for NflogTlv<'a>
impl<'a> UnwindSafe for NflogTlv<'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