pub enum DeleteDestinationError {
Status400(DeleteDestinationResponse),
Status403(DeleteDestinationResponse),
Status404(DeleteDestinationResponse),
Status409(DeleteDestinationResponse),
Status413(DeleteDestinationResponse),
Status415(DeleteDestinationResponse),
Status429(DeleteDestinationResponse),
Status500(DeleteDestinationResponse),
Status503(DeleteDestinationResponse),
UnknownValue(Value),
}Expand description
struct for typed errors of method delete_destination
Variants§
Status400(DeleteDestinationResponse)
Status403(DeleteDestinationResponse)
Status404(DeleteDestinationResponse)
Status409(DeleteDestinationResponse)
Status413(DeleteDestinationResponse)
Status415(DeleteDestinationResponse)
Status429(DeleteDestinationResponse)
Status500(DeleteDestinationResponse)
Status503(DeleteDestinationResponse)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for DeleteDestinationError
impl Clone for DeleteDestinationError
Source§fn clone(&self) -> DeleteDestinationError
fn clone(&self) -> DeleteDestinationError
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 DeleteDestinationError
impl Debug for DeleteDestinationError
Source§impl<'de> Deserialize<'de> for DeleteDestinationError
impl<'de> Deserialize<'de> for DeleteDestinationError
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 DeleteDestinationError
impl RefUnwindSafe for DeleteDestinationError
impl Send for DeleteDestinationError
impl Sync for DeleteDestinationError
impl Unpin for DeleteDestinationError
impl UnwindSafe for DeleteDestinationError
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