pub struct ExtendedEgressQueue {
pub queue: u32,
}Expand description
Extended Egress Queue - Format (0,1036)
Selected egress queue for the sampled packet
§XDR Definition (sFlow Drops)
/* Selected egress queue */
/* Output port number must be provided in enclosing structure */
/* opaque = flow_data; enterprise = 0; format = 1036 */
struct extended_egress_queue {
unsigned int queue; /* eqress queue number selected for sampled packet */
}Fields§
§queue: u32Egress queue number selected for sampled packet
Trait Implementations§
Source§impl Clone for ExtendedEgressQueue
impl Clone for ExtendedEgressQueue
Source§fn clone(&self) -> ExtendedEgressQueue
fn clone(&self) -> ExtendedEgressQueue
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 ExtendedEgressQueue
impl Debug for ExtendedEgressQueue
Source§impl PartialEq for ExtendedEgressQueue
impl PartialEq for ExtendedEgressQueue
impl Eq for ExtendedEgressQueue
impl StructuralPartialEq for ExtendedEgressQueue
Auto Trait Implementations§
impl Freeze for ExtendedEgressQueue
impl RefUnwindSafe for ExtendedEgressQueue
impl Send for ExtendedEgressQueue
impl Sync for ExtendedEgressQueue
impl Unpin for ExtendedEgressQueue
impl UnwindSafe for ExtendedEgressQueue
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