Struct cargo_lock::MetadataKey
source · [−]pub struct MetadataKey(_);
Expand description
Keys for the [metadata]
table
Implementations
sourceimpl 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
sourceimpl AsRef<str> for MetadataKey
impl AsRef<str> for MetadataKey
sourceimpl Clone for MetadataKey
impl Clone for MetadataKey
sourcefn clone(&self) -> MetadataKey
fn clone(&self) -> MetadataKey
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for MetadataKey
impl Debug for MetadataKey
sourceimpl<'de> Deserialize<'de> for MetadataKey
impl<'de> Deserialize<'de> for MetadataKey
sourcefn 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
sourceimpl Display for MetadataKey
impl Display for MetadataKey
sourceimpl FromStr for MetadataKey
impl FromStr for MetadataKey
sourceimpl Hash for MetadataKey
impl Hash for MetadataKey
sourceimpl Ord for MetadataKey
impl Ord for MetadataKey
sourceimpl PartialEq<MetadataKey> for MetadataKey
impl PartialEq<MetadataKey> for MetadataKey
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &MetadataKey) -> bool
fn ne(&self, other: &MetadataKey) -> bool
This method tests for !=
.
sourceimpl PartialOrd<MetadataKey> for MetadataKey
impl PartialOrd<MetadataKey> for MetadataKey
sourcefn partial_cmp(&self, other: &MetadataKey) -> Option<Ordering>
fn partial_cmp(&self, other: &MetadataKey) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn 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 more
sourceimpl Serialize for MetadataKey
impl Serialize for MetadataKey
sourceimpl TryFrom<&'_ MetadataKey> for Dependency
impl TryFrom<&'_ MetadataKey> for Dependency
sourcefn 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more