pub enum UpdateCaseDescriptionError {
APIErrorResponse(APIErrorResponse),
UnknownValue(Value),
}Expand description
UpdateCaseDescriptionError is a struct for typed errors of method CaseManagementAPI::update_case_description
Variants§
APIErrorResponse(APIErrorResponse)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for UpdateCaseDescriptionError
impl Clone for UpdateCaseDescriptionError
Source§fn clone(&self) -> UpdateCaseDescriptionError
fn clone(&self) -> UpdateCaseDescriptionError
Returns a duplicate of the value. Read more
1.0.0 · 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 UpdateCaseDescriptionError
impl Debug for UpdateCaseDescriptionError
Source§impl<'de> Deserialize<'de> for UpdateCaseDescriptionError
impl<'de> Deserialize<'de> for UpdateCaseDescriptionError
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 UpdateCaseDescriptionError
impl RefUnwindSafe for UpdateCaseDescriptionError
impl Send for UpdateCaseDescriptionError
impl Sync for UpdateCaseDescriptionError
impl Unpin for UpdateCaseDescriptionError
impl UnwindSafe for UpdateCaseDescriptionError
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