pub struct OutdatedDep {
pub crate_name: String,
pub current: String,
pub latest: String,
pub major_behind: u32,
}Expand description
An outdated dependency finding.
Fields§
§crate_name: StringCrate name.
current: StringCurrent version pinned in Cargo.toml.
latest: StringLatest available version on the registry.
major_behind: u32How many major versions behind we are.
Trait Implementations§
Source§impl Clone for OutdatedDep
impl Clone for OutdatedDep
Source§fn clone(&self) -> OutdatedDep
fn clone(&self) -> OutdatedDep
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 moreAuto Trait Implementations§
impl Freeze for OutdatedDep
impl RefUnwindSafe for OutdatedDep
impl Send for OutdatedDep
impl Sync for OutdatedDep
impl Unpin for OutdatedDep
impl UnsafeUnpin for OutdatedDep
impl UnwindSafe for OutdatedDep
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