pub enum AbandonedHandling {
Ignore,
Report,
Fail,
}Expand description
How composer audit treats abandoned packages.
Variants§
Ignore
Ignore abandoned packages entirely.
Report
Report abandoned packages but don’t fail on them.
Fail
Treat abandoned packages as an audit failure.
Trait Implementations§
Source§impl Clone for AbandonedHandling
impl Clone for AbandonedHandling
Source§fn clone(&self) -> AbandonedHandling
fn clone(&self) -> AbandonedHandling
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AbandonedHandling
Source§impl Debug for AbandonedHandling
impl Debug for AbandonedHandling
impl Eq for AbandonedHandling
Source§impl PartialEq for AbandonedHandling
impl PartialEq for AbandonedHandling
Source§fn eq(&self, other: &AbandonedHandling) -> bool
fn eq(&self, other: &AbandonedHandling) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AbandonedHandling
Source§impl ValueEnum for AbandonedHandling
impl ValueEnum for AbandonedHandling
Auto Trait Implementations§
impl Freeze for AbandonedHandling
impl RefUnwindSafe for AbandonedHandling
impl Send for AbandonedHandling
impl Sync for AbandonedHandling
impl Unpin for AbandonedHandling
impl UnsafeUnpin for AbandonedHandling
impl UnwindSafe for AbandonedHandling
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