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: String
The 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 for PackageId
impl PartialEq for PackageId
source§impl PartialOrd for PackageId
impl PartialOrd 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 moreimpl Eq for PackageId
impl StructuralEq for PackageId
impl StructuralPartialEq for PackageId
Auto Trait Implementations§
impl RefUnwindSafe for PackageId
impl Send for PackageId
impl Sync for PackageId
impl Unpin for PackageId
impl UnwindSafe for PackageId
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