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