pub enum DeletePreferencesError {
Status400(AppError),
Status401(AppError),
Status403(AppError),
UnknownValue(Value),
}
Expand description
struct for typed errors of method delete_preferences
Variants§
Trait Implementations§
Source§impl Clone for DeletePreferencesError
impl Clone for DeletePreferencesError
Source§fn clone(&self) -> DeletePreferencesError
fn clone(&self) -> DeletePreferencesError
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 DeletePreferencesError
impl Debug for DeletePreferencesError
Source§impl<'de> Deserialize<'de> for DeletePreferencesError
impl<'de> Deserialize<'de> for DeletePreferencesError
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 DeletePreferencesError
impl RefUnwindSafe for DeletePreferencesError
impl Send for DeletePreferencesError
impl Sync for DeletePreferencesError
impl Unpin for DeletePreferencesError
impl UnwindSafe for DeletePreferencesError
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