pub struct Warning {
pub kind: WarningKind,
pub package: Package,
pub advisory: Option<Metadata>,
pub affected: Option<Affected>,
pub versions: Option<Versions>,
}Expand description
Warnings sourced from the Advisory DB
Fields§
§kind: WarningKindKind of warning
package: PackageName of the dependent package
advisory: Option<Metadata>Source advisory
affected: Option<Affected>More specific information about what the source advisory affects (if available)
versions: Option<Versions>Versions impacted by this warning
Implementations§
Source§impl Warning
impl Warning
Sourcepub fn new(
kind: WarningKind,
package: &Package,
advisory: Option<Metadata>,
affected: Option<Affected>,
versions: Option<Versions>,
) -> Self
pub fn new( kind: WarningKind, package: &Package, advisory: Option<Metadata>, affected: Option<Affected>, versions: Option<Versions>, ) -> Self
Create Warning of the given kind
Sourcepub fn is_unmaintained(&self) -> bool
pub fn is_unmaintained(&self) -> bool
Is this a warning about an unmaintained crate?
Sourcepub fn is_unsound(&self) -> bool
pub fn is_unsound(&self) -> bool
Is this a warning about an unsound crate?
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Warning
impl<'de> Deserialize<'de> for Warning
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
Auto Trait Implementations§
impl Freeze for Warning
impl RefUnwindSafe for Warning
impl Send for Warning
impl Sync for Warning
impl Unpin for Warning
impl UnwindSafe for Warning
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more