pub struct ExtendedLinuxDropReason {
pub reason: String,
}Expand description
Extended Linux Drop Reason - Format (0,1042)
Linux drop_monitor reason information
§XDR Definition (host-sflow)
/* Linux drop_monitor reason */
/* opaque = flow_data; enterprise = 0; format = 1042 */
/* https://github.com/torvalds/linux/blob/master/include/net/dropreason.h */
/* XDR spec: */
/* struct extended_linux_drop_reason { */
/* string reason<>; */ /* NET_DM_ATTR_REASON */
/* } */Fields§
§reason: StringDrop reason string (NET_DM_ATTR_REASON)
Trait Implementations§
Source§impl Clone for ExtendedLinuxDropReason
impl Clone for ExtendedLinuxDropReason
Source§fn clone(&self) -> ExtendedLinuxDropReason
fn clone(&self) -> ExtendedLinuxDropReason
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 ExtendedLinuxDropReason
impl Debug for ExtendedLinuxDropReason
Source§impl PartialEq for ExtendedLinuxDropReason
impl PartialEq for ExtendedLinuxDropReason
impl Eq for ExtendedLinuxDropReason
impl StructuralPartialEq for ExtendedLinuxDropReason
Auto Trait Implementations§
impl Freeze for ExtendedLinuxDropReason
impl RefUnwindSafe for ExtendedLinuxDropReason
impl Send for ExtendedLinuxDropReason
impl Sync for ExtendedLinuxDropReason
impl Unpin for ExtendedLinuxDropReason
impl UnwindSafe for ExtendedLinuxDropReason
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