pub enum OpPagePoolStatsGetDoReply<'a> {
Info(IterablePagePoolInfo<'a>),
AllocFast(u32),
AllocSlow(u32),
AllocSlowHighOrder(u32),
AllocEmpty(u32),
AllocRefill(u32),
AllocWaive(u32),
RecycleCached(u32),
RecycleCacheFull(u32),
RecycleRing(u32),
RecycleRingFull(u32),
RecycleReleasedRefcnt(u32),
}Available on crate feature
netdev only.Expand description
Get page pool statistics.
Variants§
Info(IterablePagePoolInfo<'a>)
Page pool identifying information.
AllocFast(u32)
AllocSlow(u32)
AllocSlowHighOrder(u32)
AllocEmpty(u32)
AllocRefill(u32)
AllocWaive(u32)
RecycleCached(u32)
RecycleCacheFull(u32)
RecycleRing(u32)
RecycleRingFull(u32)
RecycleReleasedRefcnt(u32)
Implementations§
Source§impl OpPagePoolStatsGetDoReply<'_>
impl OpPagePoolStatsGetDoReply<'_>
pub fn new<'a>(buf: &'a [u8]) -> IterableOpPagePoolStatsGetDoReply<'a> ⓘ
Trait Implementations§
Source§impl<'a> Clone for OpPagePoolStatsGetDoReply<'a>
impl<'a> Clone for OpPagePoolStatsGetDoReply<'a>
Source§fn clone(&self) -> OpPagePoolStatsGetDoReply<'a>
fn clone(&self) -> OpPagePoolStatsGetDoReply<'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 OpPagePoolStatsGetDoReply<'a>
impl<'a> RefUnwindSafe for OpPagePoolStatsGetDoReply<'a>
impl<'a> Send for OpPagePoolStatsGetDoReply<'a>
impl<'a> Sync for OpPagePoolStatsGetDoReply<'a>
impl<'a> Unpin for OpPagePoolStatsGetDoReply<'a>
impl<'a> UnwindSafe for OpPagePoolStatsGetDoReply<'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