pub enum DepScope {
Unused,
Outdated,
All,
}Expand description
Scope of a dependency check.
Variants§
Unused
Run only the unused-dependency scanner (cargo udeps).
Outdated
Run only the outdated-version scanner (cargo outdated).
All
Run both.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DepScope
impl<'de> Deserialize<'de> for DepScope
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
impl Copy for DepScope
impl Eq for DepScope
impl StructuralPartialEq for DepScope
Auto Trait Implementations§
impl Freeze for DepScope
impl RefUnwindSafe for DepScope
impl Send for DepScope
impl Sync for DepScope
impl Unpin for DepScope
impl UnsafeUnpin for DepScope
impl UnwindSafe for DepScope
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