pub struct ExtendedMplsTunnel {
pub tunnel_lsp_name: String,
pub tunnel_id: u32,
pub tunnel_cos: u32,
}Expand description
Extended MPLS Tunnel - Format (0,1008)
MPLS tunnel information
§XDR Definition (sFlow v5)
/* Extended MPLS Tunnel */
/* opaque = flow_data; enterprise = 0; format = 1008 */
struct extended_mpls_tunnel {
string tunnel_lsp_name<>; /* Tunnel name */
unsigned int tunnel_id; /* Tunnel ID */
unsigned int tunnel_cos; /* Tunnel COS value */
}Fields§
§tunnel_lsp_name: StringTunnel LSP name
tunnel_id: u32Tunnel ID
tunnel_cos: u32Tunnel COS value
Trait Implementations§
Source§impl Clone for ExtendedMplsTunnel
impl Clone for ExtendedMplsTunnel
Source§fn clone(&self) -> ExtendedMplsTunnel
fn clone(&self) -> ExtendedMplsTunnel
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 ExtendedMplsTunnel
impl Debug for ExtendedMplsTunnel
Source§impl PartialEq for ExtendedMplsTunnel
impl PartialEq for ExtendedMplsTunnel
impl Eq for ExtendedMplsTunnel
impl StructuralPartialEq for ExtendedMplsTunnel
Auto Trait Implementations§
impl Freeze for ExtendedMplsTunnel
impl RefUnwindSafe for ExtendedMplsTunnel
impl Send for ExtendedMplsTunnel
impl Sync for ExtendedMplsTunnel
impl Unpin for ExtendedMplsTunnel
impl UnwindSafe for ExtendedMplsTunnel
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