pub enum ErrorResponseItemMessageCode {
Unauthorized,
InvalidDateFormat,
Other(Box<str>),
}Variants§
Trait Implementations§
Source§impl Clone for ErrorResponseItemMessageCode
impl Clone for ErrorResponseItemMessageCode
Source§fn clone(&self) -> ErrorResponseItemMessageCode
fn clone(&self) -> ErrorResponseItemMessageCode
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 ErrorResponseItemMessageCode
impl Debug for ErrorResponseItemMessageCode
Source§impl<'de> Deserialize<'de> for ErrorResponseItemMessageCode
impl<'de> Deserialize<'de> for ErrorResponseItemMessageCode
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 PartialEq for ErrorResponseItemMessageCode
impl PartialEq for ErrorResponseItemMessageCode
Source§fn eq(&self, other: &ErrorResponseItemMessageCode) -> bool
fn eq(&self, other: &ErrorResponseItemMessageCode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<&str> for ErrorResponseItemMessageCode
impl TryFrom<&str> for ErrorResponseItemMessageCode
Source§impl TryFrom<String> for ErrorResponseItemMessageCode
impl TryFrom<String> for ErrorResponseItemMessageCode
impl Eq for ErrorResponseItemMessageCode
impl StructuralPartialEq for ErrorResponseItemMessageCode
Auto Trait Implementations§
impl Freeze for ErrorResponseItemMessageCode
impl RefUnwindSafe for ErrorResponseItemMessageCode
impl Send for ErrorResponseItemMessageCode
impl Sync for ErrorResponseItemMessageCode
impl Unpin for ErrorResponseItemMessageCode
impl UnwindSafe for ErrorResponseItemMessageCode
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