pub enum RouteInvalidationStatus {
Stale,
Invalidated,
NeedsReview,
Superseded,
}Expand description
Route invalidation target status.
Variants§
Trait Implementations§
Source§impl Clone for RouteInvalidationStatus
impl Clone for RouteInvalidationStatus
Source§fn clone(&self) -> RouteInvalidationStatus
fn clone(&self) -> RouteInvalidationStatus
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 moreimpl Copy for RouteInvalidationStatus
Source§impl Debug for RouteInvalidationStatus
impl Debug for RouteInvalidationStatus
Source§impl<'de> Deserialize<'de> for RouteInvalidationStatus
impl<'de> Deserialize<'de> for RouteInvalidationStatus
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RouteInvalidationStatus, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RouteInvalidationStatus, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RouteInvalidationStatus
Source§impl Ord for RouteInvalidationStatus
impl Ord for RouteInvalidationStatus
Source§fn cmp(&self, other: &RouteInvalidationStatus) -> Ordering
fn cmp(&self, other: &RouteInvalidationStatus) -> 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 RouteInvalidationStatus
impl PartialEq for RouteInvalidationStatus
Source§fn eq(&self, other: &RouteInvalidationStatus) -> bool
fn eq(&self, other: &RouteInvalidationStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RouteInvalidationStatus
impl PartialOrd for RouteInvalidationStatus
Source§impl Serialize for RouteInvalidationStatus
impl Serialize for RouteInvalidationStatus
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for RouteInvalidationStatus
Auto Trait Implementations§
impl Freeze for RouteInvalidationStatus
impl RefUnwindSafe for RouteInvalidationStatus
impl Send for RouteInvalidationStatus
impl Sync for RouteInvalidationStatus
impl Unpin for RouteInvalidationStatus
impl UnsafeUnpin for RouteInvalidationStatus
impl UnwindSafe for RouteInvalidationStatus
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