pub enum CompatibilityTrustLabel {
Untrusted,
Advisory,
Observed,
Validated,
AuthorityClaimed,
}Expand description
Coarse compatibility label vocabulary (display only).
Variants§
Untrusted
Compatibility alias only.
Advisory
Compatibility alias only.
Observed
Compatibility alias only.
Validated
Compatibility alias only.
AuthorityClaimed
Compatibility alias only.
Trait Implementations§
Source§impl Clone for CompatibilityTrustLabel
impl Clone for CompatibilityTrustLabel
Source§fn clone(&self) -> CompatibilityTrustLabel
fn clone(&self) -> CompatibilityTrustLabel
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CompatibilityTrustLabel
impl Debug for CompatibilityTrustLabel
Source§impl<'de> Deserialize<'de> for CompatibilityTrustLabel
impl<'de> Deserialize<'de> for CompatibilityTrustLabel
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 Hash for CompatibilityTrustLabel
impl Hash for CompatibilityTrustLabel
Source§impl PartialEq for CompatibilityTrustLabel
impl PartialEq for CompatibilityTrustLabel
Source§fn eq(&self, other: &CompatibilityTrustLabel) -> bool
fn eq(&self, other: &CompatibilityTrustLabel) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CompatibilityTrustLabel
impl Serialize for CompatibilityTrustLabel
impl Copy for CompatibilityTrustLabel
impl Eq for CompatibilityTrustLabel
impl StructuralPartialEq for CompatibilityTrustLabel
Auto Trait Implementations§
impl Freeze for CompatibilityTrustLabel
impl RefUnwindSafe for CompatibilityTrustLabel
impl Send for CompatibilityTrustLabel
impl Sync for CompatibilityTrustLabel
impl Unpin for CompatibilityTrustLabel
impl UnsafeUnpin for CompatibilityTrustLabel
impl UnwindSafe for CompatibilityTrustLabel
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