pub struct Family {
pub id: u16,
pub name: String,
pub multicast_groups: Vec<MultiCastGroup>,
}
Expand description
Netlink generic family
Contains identifier, name and multi-cast groups for a Netlink family.
Fields§
§id: u16
§name: String
§multicast_groups: Vec<MultiCastGroup>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Family
impl RefUnwindSafe for Family
impl Send for Family
impl Sync for Family
impl Unpin for Family
impl UnwindSafe for Family
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