pub enum RtmType {
Unspec = 0,
Unicast = 1,
Local = 2,
Broadcast = 3,
Anycast = 4,
Multicast = 5,
Blackhole = 6,
Unreachable = 7,
Prohibit = 8,
Throw = 9,
Nat = 10,
Xresolve = 11,
}Available on crate feature
rt-neigh only.Expand description
Enum - defines an integer enumeration, with values for each entry incrementing by 1, (e.g. 0, 1, 2, 3)
Variants§
Unspec = 0
Unicast = 1
Local = 2
Broadcast = 3
Anycast = 4
Multicast = 5
Blackhole = 6
Unreachable = 7
Prohibit = 8
Throw = 9
Nat = 10
Xresolve = 11
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RtmType
impl RefUnwindSafe for RtmType
impl Send for RtmType
impl Sync for RtmType
impl Unpin for RtmType
impl UnwindSafe for RtmType
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