pub struct ExtendedVlanOut {
pub stack: Vec<u32>,
}Expand description
Extended VLAN Out - Format (0,1035)
Egress 802.1Q VLAN tag information
§XDR Definition (sFlow Discussion)
/* opaque = flow_data; enterprise = 0; format = 1035 */
extended_vlanout {
unsigned int stack<>; /* List of egress 802.1Q TPID/TCI layers. Each
TPID,TCI pair is represented as a single 32 bit
integer. Layers listed from outermost to
innermost. */
}Fields§
§stack: Vec<u32>List of egress 802.1Q TPID/TCI layers Each TPID,TCI pair is represented as a single 32-bit integer Layers listed from outermost to innermost
Trait Implementations§
Source§impl Clone for ExtendedVlanOut
impl Clone for ExtendedVlanOut
Source§fn clone(&self) -> ExtendedVlanOut
fn clone(&self) -> ExtendedVlanOut
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 ExtendedVlanOut
impl Debug for ExtendedVlanOut
Source§impl PartialEq for ExtendedVlanOut
impl PartialEq for ExtendedVlanOut
impl Eq for ExtendedVlanOut
impl StructuralPartialEq for ExtendedVlanOut
Auto Trait Implementations§
impl Freeze for ExtendedVlanOut
impl RefUnwindSafe for ExtendedVlanOut
impl Send for ExtendedVlanOut
impl Sync for ExtendedVlanOut
impl Unpin for ExtendedVlanOut
impl UnwindSafe for ExtendedVlanOut
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