pub struct ExtendedVlanIn {
pub stack: Vec<u32>,
}Expand description
Extended VLAN In - Format (0,1034)
Ingress 802.1Q VLAN tag information
§XDR Definition (sFlow Discussion)
/* opaque = flow_data; enterprise = 0; format = 1034 */
extended_vlanin {
unsigned int stack<>; /* List of ingress 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 ingress 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 ExtendedVlanIn
impl Clone for ExtendedVlanIn
Source§fn clone(&self) -> ExtendedVlanIn
fn clone(&self) -> ExtendedVlanIn
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 ExtendedVlanIn
impl Debug for ExtendedVlanIn
Source§impl PartialEq for ExtendedVlanIn
impl PartialEq for ExtendedVlanIn
impl Eq for ExtendedVlanIn
impl StructuralPartialEq for ExtendedVlanIn
Auto Trait Implementations§
impl Freeze for ExtendedVlanIn
impl RefUnwindSafe for ExtendedVlanIn
impl Send for ExtendedVlanIn
impl Sync for ExtendedVlanIn
impl Unpin for ExtendedVlanIn
impl UnwindSafe for ExtendedVlanIn
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