pub struct ExtendedQueue {
pub depth: u32,
}Expand description
Extended Queue - Format (0,1040)
Queue depth for sampled packet traversing switch
§XDR Definition (sFlow Transit)
/* Queue depth for sampled packet traversing switch */
/* extended_egress_queue structure must be included */
/* opaque = flow_data; enterprise = 0; format = 1040 */
struct extended_queue {
unsigned int depth; /* queue depth in bytes */
}Fields§
§depth: u32Queue depth in bytes
Trait Implementations§
Source§impl Clone for ExtendedQueue
impl Clone for ExtendedQueue
Source§fn clone(&self) -> ExtendedQueue
fn clone(&self) -> ExtendedQueue
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 ExtendedQueue
impl Debug for ExtendedQueue
Source§impl PartialEq for ExtendedQueue
impl PartialEq for ExtendedQueue
impl Eq for ExtendedQueue
impl StructuralPartialEq for ExtendedQueue
Auto Trait Implementations§
impl Freeze for ExtendedQueue
impl RefUnwindSafe for ExtendedQueue
impl Send for ExtendedQueue
impl Sync for ExtendedQueue
impl Unpin for ExtendedQueue
impl UnwindSafe for ExtendedQueue
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