pub enum AppServiceErrorKind {
InvalidCredentials,
Unauthorized,
NotFound,
Conflict,
InvalidInput,
Unavailable,
}Variants§
Trait Implementations§
Source§impl Clone for AppServiceErrorKind
impl Clone for AppServiceErrorKind
Source§fn clone(&self) -> AppServiceErrorKind
fn clone(&self) -> AppServiceErrorKind
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 AppServiceErrorKind
impl Debug for AppServiceErrorKind
Source§impl<'de> Deserialize<'de> for AppServiceErrorKind
impl<'de> Deserialize<'de> for AppServiceErrorKind
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 AppServiceErrorKind
impl PartialEq for AppServiceErrorKind
Source§fn eq(&self, other: &AppServiceErrorKind) -> bool
fn eq(&self, other: &AppServiceErrorKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AppServiceErrorKind
impl Serialize for AppServiceErrorKind
impl Copy for AppServiceErrorKind
impl Eq for AppServiceErrorKind
impl StructuralPartialEq for AppServiceErrorKind
Auto Trait Implementations§
impl Freeze for AppServiceErrorKind
impl RefUnwindSafe for AppServiceErrorKind
impl Send for AppServiceErrorKind
impl Sync for AppServiceErrorKind
impl Unpin for AppServiceErrorKind
impl UnsafeUnpin for AppServiceErrorKind
impl UnwindSafe for AppServiceErrorKind
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