pub enum UnarchiveCaseError {
APIErrorResponse(APIErrorResponse),
UnknownValue(Value),
}
Expand description
UnarchiveCaseError is a struct for typed errors of method CaseManagementAPI::unarchive_case
Variants§
APIErrorResponse(APIErrorResponse)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for UnarchiveCaseError
impl Clone for UnarchiveCaseError
Source§fn clone(&self) -> UnarchiveCaseError
fn clone(&self) -> UnarchiveCaseError
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 UnarchiveCaseError
impl Debug for UnarchiveCaseError
Source§impl<'de> Deserialize<'de> for UnarchiveCaseError
impl<'de> Deserialize<'de> for UnarchiveCaseError
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 UnarchiveCaseError
impl RefUnwindSafe for UnarchiveCaseError
impl Send for UnarchiveCaseError
impl Sync for UnarchiveCaseError
impl Unpin for UnarchiveCaseError
impl UnwindSafe for UnarchiveCaseError
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