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