pub enum Trust {
Reduced,
Full,
}
Expand description
A way to specify how ‘safe’ we feel about a resource, typically about a git repository.
Variants§
Reduced
Caution is warranted when using the resource.
Full
We have no doubts that this resource means no harm and it can be used at will.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Trust
impl<'de> Deserialize<'de> for Trust
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 Trust
impl Ord for Trust
source§impl PartialEq<Trust> for Trust
impl PartialEq<Trust> for Trust
source§impl PartialOrd<Trust> for Trust
impl PartialOrd<Trust> for Trust
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