pub enum OpGetchainDoReply<'a> {
Kind(&'a CStr),
Options(OptionsMsg<'a>),
Stats(PushTcStats),
Xstats(TcaStatsAppMsg<'a>),
Rate(PushGnetEstimator),
Fcnt(u32),
Stats2(IterableTcaStatsAttrs<'a>),
Stab(IterableTcaStabAttrs<'a>),
Chain(u32),
IngressBlock(u32),
EgressBlock(u32),
}Available on crate feature
tc only.Expand description
Get / dump tc chain information.
Variants§
Kind(&'a CStr)
Options(OptionsMsg<'a>)
Stats(PushTcStats)
Xstats(TcaStatsAppMsg<'a>)
Rate(PushGnetEstimator)
Fcnt(u32)
Stats2(IterableTcaStatsAttrs<'a>)
Stab(IterableTcaStabAttrs<'a>)
Chain(u32)
IngressBlock(u32)
EgressBlock(u32)
Implementations§
Source§impl<'a> OpGetchainDoReply<'a>
impl<'a> OpGetchainDoReply<'a>
pub fn new(buf: &'a [u8]) -> (PushTcmsg, IterableOpGetchainDoReply<'a>)
Trait Implementations§
Source§impl<'a> Clone for OpGetchainDoReply<'a>
impl<'a> Clone for OpGetchainDoReply<'a>
Source§fn clone(&self) -> OpGetchainDoReply<'a>
fn clone(&self) -> OpGetchainDoReply<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for OpGetchainDoReply<'a>
impl<'a> RefUnwindSafe for OpGetchainDoReply<'a>
impl<'a> Send for OpGetchainDoReply<'a>
impl<'a> Sync for OpGetchainDoReply<'a>
impl<'a> Unpin for OpGetchainDoReply<'a>
impl<'a> UnwindSafe for OpGetchainDoReply<'a>
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