Enum rustsec::WarningKind
source · #[non_exhaustive]pub enum WarningKind {
Notice,
Unmaintained,
Unsound,
Yanked,
}
Expand description
Kinds of warnings
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.
Notice
Informational notices about packages
Unmaintained
Unmaintained packages
Unsound
Unsound packages
Yanked
Yanked packages
Implementations§
source§impl WarningKind
impl WarningKind
sourcepub fn as_str(&self) -> &str
pub fn as_str(&self) -> &str
Get a str
representing an warning WarningKind
Trait Implementations§
source§impl Clone for WarningKind
impl Clone for WarningKind
source§fn clone(&self) -> WarningKind
fn clone(&self) -> WarningKind
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 WarningKind
impl Debug for WarningKind
source§impl<'de> Deserialize<'de> for WarningKind
impl<'de> Deserialize<'de> for WarningKind
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for WarningKind
impl Display for WarningKind
source§impl FromStr for WarningKind
impl FromStr for WarningKind
source§impl Hash for WarningKind
impl Hash for WarningKind
source§impl Ord for WarningKind
impl Ord for WarningKind
source§fn cmp(&self, other: &WarningKind) -> Ordering
fn cmp(&self, other: &WarningKind) -> 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 WarningKind
impl PartialEq for WarningKind
source§fn eq(&self, other: &WarningKind) -> bool
fn eq(&self, other: &WarningKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for WarningKind
impl PartialOrd for WarningKind
source§fn partial_cmp(&self, other: &WarningKind) -> Option<Ordering>
fn partial_cmp(&self, other: &WarningKind) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for WarningKind
impl Serialize for WarningKind
impl Copy for WarningKind
impl Eq for WarningKind
impl StructuralEq for WarningKind
impl StructuralPartialEq for WarningKind
Auto Trait Implementations§
impl RefUnwindSafe for WarningKind
impl Send for WarningKind
impl Sync for WarningKind
impl Unpin for WarningKind
impl UnwindSafe for WarningKind
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.