pub enum DeprecationStatus {
Active,
Deprecated,
Sunset,
}Expand description
API deprecation status labels.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for DeprecationStatus
impl Clone for DeprecationStatus
Source§fn clone(&self) -> DeprecationStatus
fn clone(&self) -> DeprecationStatus
Returns a duplicate 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 DeprecationStatus
impl Debug for DeprecationStatus
Source§impl Default for DeprecationStatus
impl Default for DeprecationStatus
Source§impl Display for DeprecationStatus
impl Display for DeprecationStatus
Source§impl FromStr for DeprecationStatus
impl FromStr for DeprecationStatus
Source§impl Hash for DeprecationStatus
impl Hash for DeprecationStatus
Source§impl Ord for DeprecationStatus
impl Ord for DeprecationStatus
Source§fn cmp(&self, other: &DeprecationStatus) -> Ordering
fn cmp(&self, other: &DeprecationStatus) -> Ordering
1.21.0 · 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 DeprecationStatus
impl PartialEq for DeprecationStatus
Source§impl PartialOrd for DeprecationStatus
impl PartialOrd for DeprecationStatus
impl Copy for DeprecationStatus
impl Eq for DeprecationStatus
impl StructuralPartialEq for DeprecationStatus
Auto Trait Implementations§
impl Freeze for DeprecationStatus
impl RefUnwindSafe for DeprecationStatus
impl Send for DeprecationStatus
impl Sync for DeprecationStatus
impl Unpin for DeprecationStatus
impl UnsafeUnpin for DeprecationStatus
impl UnwindSafe for DeprecationStatus
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