pub enum AdditionalContextKind {
Untrusted,
Application,
}Expand description
AdditionalContextKind
JSON schema
{
"type": "string",
"enum": [
"untrusted",
"application"
]
}Variants§
Trait Implementations§
Source§impl Clone for AdditionalContextKind
impl Clone for AdditionalContextKind
Source§fn clone(&self) -> AdditionalContextKind
fn clone(&self) -> AdditionalContextKind
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 AdditionalContextKind
impl Debug for AdditionalContextKind
Source§impl<'de> Deserialize<'de> for AdditionalContextKind
impl<'de> Deserialize<'de> for AdditionalContextKind
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 Display for AdditionalContextKind
impl Display for AdditionalContextKind
Source§impl FromStr for AdditionalContextKind
impl FromStr for AdditionalContextKind
Source§impl Hash for AdditionalContextKind
impl Hash for AdditionalContextKind
Source§impl Ord for AdditionalContextKind
impl Ord for AdditionalContextKind
Source§fn cmp(&self, other: &AdditionalContextKind) -> Ordering
fn cmp(&self, other: &AdditionalContextKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AdditionalContextKind
impl PartialEq for AdditionalContextKind
Source§fn eq(&self, other: &AdditionalContextKind) -> bool
fn eq(&self, other: &AdditionalContextKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AdditionalContextKind
impl PartialOrd for AdditionalContextKind
Source§impl Serialize for AdditionalContextKind
impl Serialize for AdditionalContextKind
Source§impl TryFrom<&String> for AdditionalContextKind
impl TryFrom<&String> for AdditionalContextKind
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for AdditionalContextKind
impl TryFrom<&str> for AdditionalContextKind
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for AdditionalContextKind
impl TryFrom<String> for AdditionalContextKind
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for AdditionalContextKind
impl Eq for AdditionalContextKind
impl StructuralPartialEq for AdditionalContextKind
Auto Trait Implementations§
impl Freeze for AdditionalContextKind
impl RefUnwindSafe for AdditionalContextKind
impl Send for AdditionalContextKind
impl Sync for AdditionalContextKind
impl Unpin for AdditionalContextKind
impl UnsafeUnpin for AdditionalContextKind
impl UnwindSafe for AdditionalContextKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.