pub enum HookOutputEntryKind {
Warning,
Stop,
Feedback,
Context,
Error,
}Expand description
HookOutputEntryKind
JSON schema
{
"type": "string",
"enum": [
"warning",
"stop",
"feedback",
"context",
"error"
]
}Variants§
Trait Implementations§
Source§impl Clone for HookOutputEntryKind
impl Clone for HookOutputEntryKind
Source§fn clone(&self) -> HookOutputEntryKind
fn clone(&self) -> HookOutputEntryKind
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 HookOutputEntryKind
impl Debug for HookOutputEntryKind
Source§impl<'de> Deserialize<'de> for HookOutputEntryKind
impl<'de> Deserialize<'de> for HookOutputEntryKind
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 HookOutputEntryKind
impl Display for HookOutputEntryKind
Source§impl FromStr for HookOutputEntryKind
impl FromStr for HookOutputEntryKind
Source§impl Hash for HookOutputEntryKind
impl Hash for HookOutputEntryKind
Source§impl Ord for HookOutputEntryKind
impl Ord for HookOutputEntryKind
Source§fn cmp(&self, other: &HookOutputEntryKind) -> Ordering
fn cmp(&self, other: &HookOutputEntryKind) -> 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 HookOutputEntryKind
impl PartialEq for HookOutputEntryKind
Source§fn eq(&self, other: &HookOutputEntryKind) -> bool
fn eq(&self, other: &HookOutputEntryKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for HookOutputEntryKind
impl PartialOrd for HookOutputEntryKind
Source§impl Serialize for HookOutputEntryKind
impl Serialize for HookOutputEntryKind
Source§impl TryFrom<&String> for HookOutputEntryKind
impl TryFrom<&String> for HookOutputEntryKind
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for HookOutputEntryKind
impl TryFrom<&str> for HookOutputEntryKind
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for HookOutputEntryKind
impl TryFrom<String> for HookOutputEntryKind
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for HookOutputEntryKind
impl Eq for HookOutputEntryKind
impl StructuralPartialEq for HookOutputEntryKind
Auto Trait Implementations§
impl Freeze for HookOutputEntryKind
impl RefUnwindSafe for HookOutputEntryKind
impl Send for HookOutputEntryKind
impl Sync for HookOutputEntryKind
impl Unpin for HookOutputEntryKind
impl UnsafeUnpin for HookOutputEntryKind
impl UnwindSafe for HookOutputEntryKind
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.