pub enum UpdatePreferencesError {
Status400(AppError),
Status401(AppError),
Status403(AppError),
Status404(AppError),
UnknownValue(Value),
}
Expand description
struct for typed errors of method update_preferences
Variants§
Status400(AppError)
Status401(AppError)
Status403(AppError)
Status404(AppError)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for UpdatePreferencesError
impl Clone for UpdatePreferencesError
Source§fn clone(&self) -> UpdatePreferencesError
fn clone(&self) -> UpdatePreferencesError
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdatePreferencesError
impl Debug for UpdatePreferencesError
Source§impl<'de> Deserialize<'de> for UpdatePreferencesError
impl<'de> Deserialize<'de> for UpdatePreferencesError
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
Auto Trait Implementations§
impl Freeze for UpdatePreferencesError
impl RefUnwindSafe for UpdatePreferencesError
impl Send for UpdatePreferencesError
impl Sync for UpdatePreferencesError
impl Unpin for UpdatePreferencesError
impl UnwindSafe for UpdatePreferencesError
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