Enum netlink_packet_route::route::RouteScope
source · #[non_exhaustive]pub enum RouteScope {
Universe,
Site,
Link,
Host,
NoWhere,
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 RouteScope
impl Clone for RouteScope
source§fn clone(&self) -> RouteScope
fn clone(&self) -> RouteScope
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 RouteScope
impl Debug for RouteScope
source§impl Default for RouteScope
impl Default for RouteScope
source§impl Display for RouteScope
impl Display for RouteScope
source§impl From<RouteScope> for u8
impl From<RouteScope> for u8
source§fn from(v: RouteScope) -> Self
fn from(v: RouteScope) -> Self
Converts to this type from the input type.
source§impl From<u8> for RouteScope
impl From<u8> for RouteScope
source§impl PartialEq for RouteScope
impl PartialEq for RouteScope
source§fn eq(&self, other: &RouteScope) -> bool
fn eq(&self, other: &RouteScope) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for RouteScope
impl Eq for RouteScope
impl StructuralEq for RouteScope
impl StructuralPartialEq for RouteScope
Auto Trait Implementations§
impl RefUnwindSafe for RouteScope
impl Send for RouteScope
impl Sync for RouteScope
impl Unpin for RouteScope
impl UnwindSafe for RouteScope
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