pub struct LockedPackage {
pub name: PackageName,
pub version: Version,
pub source: LockedSource,
pub checksum: Option<String>,
pub dependencies: Vec<PackageName>,
}Expand description
One resolved package recorded in the lockfile.
Fields§
§name: PackageName§version: Version§source: LockedSource§checksum: Option<String>Optional content hash copied from the index. Used by the fetch / artifact-verification path; absent for index entries that predate checksum support.
dependencies: Vec<PackageName>Names of other locked packages this one depends on.
Trait Implementations§
Source§impl Clone for LockedPackage
impl Clone for LockedPackage
Source§fn clone(&self) -> LockedPackage
fn clone(&self) -> LockedPackage
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 LockedPackage
impl Debug for LockedPackage
impl Eq for LockedPackage
Source§impl PartialEq for LockedPackage
impl PartialEq for LockedPackage
Source§fn eq(&self, other: &LockedPackage) -> bool
fn eq(&self, other: &LockedPackage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LockedPackage
Auto Trait Implementations§
impl Freeze for LockedPackage
impl RefUnwindSafe for LockedPackage
impl Send for LockedPackage
impl Sync for LockedPackage
impl Unpin for LockedPackage
impl UnsafeUnpin for LockedPackage
impl UnwindSafe for LockedPackage
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.