pub enum TachyonCommandSubtype1Reason {
InternalError,
Unauthorized,
InvalidRequest,
CommandUnimplemented,
}Expand description
TachyonCommandSubtype1Reason
JSON schema
{
"enum": [
"internal_error",
"unauthorized",
"invalid_request",
"command_unimplemented"
]
}Variants§
Trait Implementations§
Source§impl Clone for TachyonCommandSubtype1Reason
impl Clone for TachyonCommandSubtype1Reason
Source§fn clone(&self) -> TachyonCommandSubtype1Reason
fn clone(&self) -> TachyonCommandSubtype1Reason
Returns a duplicate of the value. Read more
1.0.0 · 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 TachyonCommandSubtype1Reason
impl Debug for TachyonCommandSubtype1Reason
Source§impl<'de> Deserialize<'de> for TachyonCommandSubtype1Reason
impl<'de> Deserialize<'de> for TachyonCommandSubtype1Reason
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 TachyonCommandSubtype1Reason
impl Hash for TachyonCommandSubtype1Reason
Source§impl Ord for TachyonCommandSubtype1Reason
impl Ord for TachyonCommandSubtype1Reason
Source§fn cmp(&self, other: &TachyonCommandSubtype1Reason) -> Ordering
fn cmp(&self, other: &TachyonCommandSubtype1Reason) -> Ordering
1.21.0 · 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 TachyonCommandSubtype1Reason
impl PartialEq for TachyonCommandSubtype1Reason
Source§fn eq(&self, other: &TachyonCommandSubtype1Reason) -> bool
fn eq(&self, other: &TachyonCommandSubtype1Reason) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for TachyonCommandSubtype1Reason
impl PartialOrd for TachyonCommandSubtype1Reason
Source§impl TryFrom<&String> for TachyonCommandSubtype1Reason
impl TryFrom<&String> for TachyonCommandSubtype1Reason
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for TachyonCommandSubtype1Reason
impl TryFrom<&str> for TachyonCommandSubtype1Reason
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for TachyonCommandSubtype1Reason
impl TryFrom<String> for TachyonCommandSubtype1Reason
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for TachyonCommandSubtype1Reason
impl Eq for TachyonCommandSubtype1Reason
impl StructuralPartialEq for TachyonCommandSubtype1Reason
Auto Trait Implementations§
impl Freeze for TachyonCommandSubtype1Reason
impl RefUnwindSafe for TachyonCommandSubtype1Reason
impl Send for TachyonCommandSubtype1Reason
impl Sync for TachyonCommandSubtype1Reason
impl Unpin for TachyonCommandSubtype1Reason
impl UnsafeUnpin for TachyonCommandSubtype1Reason
impl UnwindSafe for TachyonCommandSubtype1Reason
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