Struct cargo_lock::MetadataKey
source · pub struct MetadataKey(_);
Expand description
Keys for the [metadata]
table
Implementations§
source§impl MetadataKey
impl MetadataKey
sourcepub fn for_checksum(dep: &Dependency) -> Self
pub fn for_checksum(dep: &Dependency) -> Self
Create a metadata key for a checksum for the given dependency
sourcepub fn is_checksum(&self) -> bool
pub fn is_checksum(&self) -> bool
Is this metadata key a checksum entry?
sourcepub fn checksum_dependency(&self) -> Result<Dependency>
pub fn checksum_dependency(&self) -> Result<Dependency>
Get the dependency for a particular checksum value (if applicable)
Trait Implementations§
source§impl AsRef<str> for MetadataKey
impl AsRef<str> for MetadataKey
source§impl Clone for MetadataKey
impl Clone for MetadataKey
source§fn clone(&self) -> MetadataKey
fn clone(&self) -> MetadataKey
Returns a copy of the value. Read more
1.0.0 · 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 MetadataKey
impl Debug for MetadataKey
source§impl<'de> Deserialize<'de> for MetadataKey
impl<'de> Deserialize<'de> for MetadataKey
source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for MetadataKey
impl Display for MetadataKey
source§impl FromStr for MetadataKey
impl FromStr for MetadataKey
source§impl Hash for MetadataKey
impl Hash for MetadataKey
source§impl Ord for MetadataKey
impl Ord for MetadataKey
source§fn cmp(&self, other: &MetadataKey) -> Ordering
fn cmp(&self, other: &MetadataKey) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<MetadataKey> for MetadataKey
impl PartialEq<MetadataKey> for MetadataKey
source§fn eq(&self, other: &MetadataKey) -> bool
fn eq(&self, other: &MetadataKey) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<MetadataKey> for MetadataKey
impl PartialOrd<MetadataKey> for MetadataKey
source§fn partial_cmp(&self, other: &MetadataKey) -> Option<Ordering>
fn partial_cmp(&self, other: &MetadataKey) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for MetadataKey
impl Serialize for MetadataKey
source§impl TryFrom<&MetadataKey> for Dependency
impl TryFrom<&MetadataKey> for Dependency
source§fn try_from(key: &MetadataKey) -> Result<Dependency>
fn try_from(key: &MetadataKey) -> Result<Dependency>
Performs the conversion.
impl Eq for MetadataKey
impl StructuralEq for MetadataKey
impl StructuralPartialEq for MetadataKey
Auto Trait Implementations§
impl RefUnwindSafe for MetadataKey
impl Send for MetadataKey
impl Sync for MetadataKey
impl Unpin for MetadataKey
impl UnwindSafe for MetadataKey
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.