pub struct ExtendedAcl {
pub number: u32,
pub name: String,
pub direction: u32,
}Expand description
Extended ACL - Format (0,1037)
ACL information about the rule that matched this packet
§XDR Definition (sFlow Drops)
/* ACL information */
/* Information about ACL rule that matched this packet
/* opaque = flow_data; enterprise = 0; format = 1037 */
struct extended_acl {
unsigned int number; /* access list number */
string name<>; /* access list name */
unsigned int direction; /* unknown = 0, ingress = 1, egress = 2 */
}Fields§
§number: u32Access list number
name: StringAccess list name
direction: u32Direction: unknown = 0, ingress = 1, egress = 2
Trait Implementations§
Source§impl Clone for ExtendedAcl
impl Clone for ExtendedAcl
Source§fn clone(&self) -> ExtendedAcl
fn clone(&self) -> ExtendedAcl
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 ExtendedAcl
impl Debug for ExtendedAcl
Source§impl PartialEq for ExtendedAcl
impl PartialEq for ExtendedAcl
impl Eq for ExtendedAcl
impl StructuralPartialEq for ExtendedAcl
Auto Trait Implementations§
impl Freeze for ExtendedAcl
impl RefUnwindSafe for ExtendedAcl
impl Send for ExtendedAcl
impl Sync for ExtendedAcl
impl Unpin for ExtendedAcl
impl UnwindSafe for ExtendedAcl
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