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