pub enum IpvsCtrlCmd {
Unspec,
NewService,
SetService,
DelService,
GetService,
NewDest,
SetDest,
DelDest,
GetDest,
}
Expand description
Command code definition of Netlink controller (nlctrl) family
Variants§
Trait Implementations§
Source§impl Clone for IpvsCtrlCmd
impl Clone for IpvsCtrlCmd
Source§fn clone(&self) -> IpvsCtrlCmd
fn clone(&self) -> IpvsCtrlCmd
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IpvsCtrlCmd
impl Debug for IpvsCtrlCmd
Source§impl From<IpvsCtrlCmd> for u8
impl From<IpvsCtrlCmd> for u8
Source§fn from(cmd: IpvsCtrlCmd) -> u8
fn from(cmd: IpvsCtrlCmd) -> u8
Converts to this type from the input type.
Source§impl PartialEq for IpvsCtrlCmd
impl PartialEq for IpvsCtrlCmd
Source§impl TryFrom<u8> for IpvsCtrlCmd
impl TryFrom<u8> for IpvsCtrlCmd
impl Copy for IpvsCtrlCmd
impl Eq for IpvsCtrlCmd
impl StructuralPartialEq for IpvsCtrlCmd
Auto Trait Implementations§
impl Freeze for IpvsCtrlCmd
impl RefUnwindSafe for IpvsCtrlCmd
impl Send for IpvsCtrlCmd
impl Sync for IpvsCtrlCmd
impl Unpin for IpvsCtrlCmd
impl UnwindSafe for IpvsCtrlCmd
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