#[repr(u16)]pub enum Ndtpa {
Show 20 variants
Unspec = 0,
Ifindex = 1,
Refcnt = 2,
ReachableTime = 3,
BaseReachableTime = 4,
RetransTime = 5,
GcStaletime = 6,
DelayProbeTime = 7,
QueueLen = 8,
AppProbes = 9,
UcastProbes = 10,
McastProbes = 11,
AnycastDelay = 12,
ProxyDelay = 13,
ProxyQlen = 14,
Locktime = 15,
QueueLenbytes = 16,
McastReprobes = 17,
PAD = 18,
_MAX = 19,
}
Variants§
Unspec = 0
Ifindex = 1
Refcnt = 2
ReachableTime = 3
BaseReachableTime = 4
RetransTime = 5
GcStaletime = 6
DelayProbeTime = 7
QueueLen = 8
AppProbes = 9
UcastProbes = 10
McastProbes = 11
AnycastDelay = 12
ProxyDelay = 13
ProxyQlen = 14
Locktime = 15
QueueLenbytes = 16
McastReprobes = 17
PAD = 18
_MAX = 19
Implementations§
Source§impl Ndtpa
impl Ndtpa
pub fn put_ifindex<'a>( nlv: &'a mut MsgVec, data: &u32, ) -> Result<&'a mut MsgVec>
pub fn put_refcnt<'a>(nlv: &'a mut MsgVec, data: &u32) -> Result<&'a mut MsgVec>
pub fn put_reachable_time<'a>( nlv: &'a mut MsgVec, data: &u64, ) -> Result<&'a mut MsgVec>
pub fn put_base_reachable_time<'a>( nlv: &'a mut MsgVec, data: &u64, ) -> Result<&'a mut MsgVec>
pub fn put_retrans_time<'a>( nlv: &'a mut MsgVec, data: &u64, ) -> Result<&'a mut MsgVec>
pub fn put_gc_staletime<'a>( nlv: &'a mut MsgVec, data: &u64, ) -> Result<&'a mut MsgVec>
pub fn put_delay_probe_time<'a>( nlv: &'a mut MsgVec, data: &u64, ) -> Result<&'a mut MsgVec>
pub fn put_queue_len<'a>( nlv: &'a mut MsgVec, data: &u64, ) -> Result<&'a mut MsgVec>
pub fn put_app_probes<'a>( nlv: &'a mut MsgVec, data: &u64, ) -> Result<&'a mut MsgVec>
pub fn put_ucast_probes<'a>( nlv: &'a mut MsgVec, data: &u32, ) -> Result<&'a mut MsgVec>
pub fn put_mcast_probes<'a>( nlv: &'a mut MsgVec, data: &u32, ) -> Result<&'a mut MsgVec>
pub fn put_anycast_delay<'a>( nlv: &'a mut MsgVec, data: &u64, ) -> Result<&'a mut MsgVec>
pub fn put_proxy_delay<'a>( nlv: &'a mut MsgVec, data: &u64, ) -> Result<&'a mut MsgVec>
pub fn put_proxy_qlen<'a>( nlv: &'a mut MsgVec, data: &u32, ) -> Result<&'a mut MsgVec>
pub fn put_locktime<'a>( nlv: &'a mut MsgVec, data: &u64, ) -> Result<&'a mut MsgVec>
pub fn put_queue_lenbytes<'a>( nlv: &'a mut MsgVec, data: &u32, ) -> Result<&'a mut MsgVec>
pub fn put_mcast_reprobes<'a>( nlv: &'a mut MsgVec, data: &u32, ) -> Result<&'a mut MsgVec>
Trait Implementations§
impl Copy for Ndtpa
impl Eq for Ndtpa
impl StructuralPartialEq for Ndtpa
Auto Trait Implementations§
impl Freeze for Ndtpa
impl RefUnwindSafe for Ndtpa
impl Send for Ndtpa
impl Sync for Ndtpa
impl Unpin for Ndtpa
impl UnwindSafe for Ndtpa
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