pub struct ExtendedVlanTunnel {
pub vlan_stack: Vec<u32>,
}Expand description
Extended VLAN Tunnel - Format (0,1012)
VLAN tunnel information for nested VLAN tags
§XDR Definition (sFlow v5)
/* Extended VLAN tunnel information */
/* opaque = flow_data; enterprise = 0; format = 1012 */
struct extended_vlantunnel {
unsigned int stack<>; /* List of stripped 802.1Q TPID/TCI layers */
}Fields§
§vlan_stack: Vec<u32>Stack of VLAN tags
Trait Implementations§
Source§impl Clone for ExtendedVlanTunnel
impl Clone for ExtendedVlanTunnel
Source§fn clone(&self) -> ExtendedVlanTunnel
fn clone(&self) -> ExtendedVlanTunnel
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 ExtendedVlanTunnel
impl Debug for ExtendedVlanTunnel
Source§impl PartialEq for ExtendedVlanTunnel
impl PartialEq for ExtendedVlanTunnel
impl Eq for ExtendedVlanTunnel
impl StructuralPartialEq for ExtendedVlanTunnel
Auto Trait Implementations§
impl Freeze for ExtendedVlanTunnel
impl RefUnwindSafe for ExtendedVlanTunnel
impl Send for ExtendedVlanTunnel
impl Sync for ExtendedVlanTunnel
impl Unpin for ExtendedVlanTunnel
impl UnwindSafe for ExtendedVlanTunnel
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