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: WarningKind
Kind of warning
package: Package
Name 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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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