pub enum RouteMatchKind {
Exact,
Pattern,
Prefix,
}Expand description
Route matching metadata labels.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RouteMatchKind
impl Clone for RouteMatchKind
Source§fn clone(&self) -> RouteMatchKind
fn clone(&self) -> RouteMatchKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RouteMatchKind
impl Debug for RouteMatchKind
Source§impl Default for RouteMatchKind
impl Default for RouteMatchKind
Source§impl Display for RouteMatchKind
impl Display for RouteMatchKind
Source§impl FromStr for RouteMatchKind
impl FromStr for RouteMatchKind
Source§impl Hash for RouteMatchKind
impl Hash for RouteMatchKind
Source§impl Ord for RouteMatchKind
impl Ord for RouteMatchKind
Source§fn cmp(&self, other: &RouteMatchKind) -> Ordering
fn cmp(&self, other: &RouteMatchKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RouteMatchKind
impl PartialEq for RouteMatchKind
Source§fn eq(&self, other: &RouteMatchKind) -> bool
fn eq(&self, other: &RouteMatchKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RouteMatchKind
impl PartialOrd for RouteMatchKind
impl Copy for RouteMatchKind
impl Eq for RouteMatchKind
impl StructuralPartialEq for RouteMatchKind
Auto Trait Implementations§
impl Freeze for RouteMatchKind
impl RefUnwindSafe for RouteMatchKind
impl Send for RouteMatchKind
impl Sync for RouteMatchKind
impl Unpin for RouteMatchKind
impl UnsafeUnpin for RouteMatchKind
impl UnwindSafe for RouteMatchKind
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