Enum netlink_packet_route::rule::RuleAction
source · #[non_exhaustive]pub enum RuleAction {
Unspec,
ToTable,
Goto,
Nop,
Blackhole,
Unreachable,
Prohibit,
Other(u8),
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
source§impl Clone for RuleAction
impl Clone for RuleAction
source§fn clone(&self) -> RuleAction
fn clone(&self) -> RuleAction
Returns a copy 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 RuleAction
impl Debug for RuleAction
source§impl Default for RuleAction
impl Default for RuleAction
source§fn default() -> RuleAction
fn default() -> RuleAction
Returns the “default value” for a type. Read more
source§impl From<RuleAction> for u8
impl From<RuleAction> for u8
source§fn from(v: RuleAction) -> u8
fn from(v: RuleAction) -> u8
Converts to this type from the input type.
source§impl From<u8> for RuleAction
impl From<u8> for RuleAction
source§impl PartialEq for RuleAction
impl PartialEq for RuleAction
source§fn eq(&self, other: &RuleAction) -> bool
fn eq(&self, other: &RuleAction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for RuleAction
impl Eq for RuleAction
impl StructuralEq for RuleAction
impl StructuralPartialEq for RuleAction
Auto Trait Implementations§
impl RefUnwindSafe for RuleAction
impl Send for RuleAction
impl Sync for RuleAction
impl Unpin for RuleAction
impl UnwindSafe for RuleAction
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