Struct warg_protocol::registry::PackageId
source · pub struct PackageId { /* private fields */ }Expand description
Represents a valid package identifier in the registry.
Valid package identifiers conform to the component model specification for identifiers.
A valid component model identifier is the format <namespace>:<name>,
where both parts are also valid WIT identifiers (i.e. kebab-cased).
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for PackageId
impl<'de> Deserialize<'de> for PackageId
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 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 moresource§impl VisitBytes for PackageId
impl VisitBytes for PackageId
source§impl VisitPrefixEncode for PackageId
impl VisitPrefixEncode for PackageId
fn visit_pe<BV: ?Sized + ByteVisitor>( &self, visitor: &mut PrefixEncodeVisitor<'_, BV> )
fn visit_bv<BV>(&self, visitor: &mut BV)where BV: ByteVisitor + ?Sized,
impl 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
§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,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§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,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.