pub enum Deprecation {
NoDeprecated,
Deprecated {
reason: Option<String>,
},
}
Variants§
Implementations§
Source§impl Deprecation
impl Deprecation
Trait Implementations§
Source§impl Debug for Deprecation
impl Debug for Deprecation
Source§impl PartialEq for Deprecation
impl PartialEq for Deprecation
impl Eq for Deprecation
impl StructuralPartialEq for Deprecation
Auto Trait Implementations§
impl Freeze for Deprecation
impl RefUnwindSafe for Deprecation
impl Send for Deprecation
impl Sync for Deprecation
impl Unpin for Deprecation
impl UnwindSafe for Deprecation
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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.