Struct cargo_metadata::PackageId
source · pub struct PackageId {
pub repr: String,
}Expand description
An “opaque” identifier for a package.
It is possible to inspect the repr field, if the need arises, but its
precise format is an implementation detail and is subject to change.
Metadata can be indexed by PackageId.
Fields§
§repr: StringThe underlying string representation of id.
Trait Implementations§
source§impl<'de> Deserialize<'de> for PackageId
impl<'de> Deserialize<'de> for PackageId
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Ord for PackageId
impl Ord for PackageId
source§impl PartialEq<PackageId> for PackageId
impl PartialEq<PackageId> for PackageId
source§impl PartialOrd<PackageId> for PackageId
impl PartialOrd<PackageId> for PackageId
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 more