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