pub struct TcMsg {
pub header: TcHeader,
pub attrs: Vec<TcAttr>,
}
Expand description
This struct is an intermediate representation for netlink tc
messages.
Any downstream structs should be constructed into this struct.
Fields§
§header: TcHeader
§attrs: Vec<TcAttr>
Trait Implementations§
impl StructuralPartialEq for TcMsg
Auto Trait Implementations§
impl Freeze for TcMsg
impl RefUnwindSafe for TcMsg
impl Send for TcMsg
impl Sync for TcMsg
impl Unpin for TcMsg
impl UnwindSafe for TcMsg
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