pub struct CargoDependencyEntry {
pub file: PathBuf,
pub dependency_name: String,
pub current_requirement: Option<String>,
pub latest_version: Option<String>,
pub update_needed: bool,
pub managed: bool,
pub reason: Option<String>,
}Fields§
§file: PathBuf§dependency_name: String§current_requirement: Option<String>§latest_version: Option<String>§update_needed: bool§managed: bool§reason: Option<String>Trait Implementations§
Source§impl Clone for CargoDependencyEntry
impl Clone for CargoDependencyEntry
Source§fn clone(&self) -> CargoDependencyEntry
fn clone(&self) -> CargoDependencyEntry
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 moreSource§impl Debug for CargoDependencyEntry
impl Debug for CargoDependencyEntry
impl Eq for CargoDependencyEntry
Source§impl PartialEq for CargoDependencyEntry
impl PartialEq for CargoDependencyEntry
impl StructuralPartialEq for CargoDependencyEntry
Auto Trait Implementations§
impl Freeze for CargoDependencyEntry
impl RefUnwindSafe for CargoDependencyEntry
impl Send for CargoDependencyEntry
impl Sync for CargoDependencyEntry
impl Unpin for CargoDependencyEntry
impl UnsafeUnpin for CargoDependencyEntry
impl UnwindSafe for CargoDependencyEntry
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.