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