pub enum StreamDeleteError {
Delete {
stream: String,
status: ResponseCode,
},
Client(ClientError),
}
Variants§
Trait Implementations§
Source§impl Debug for StreamDeleteError
impl Debug for StreamDeleteError
Source§impl Display for StreamDeleteError
impl Display for StreamDeleteError
Source§impl Error for StreamDeleteError
impl Error for StreamDeleteError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<ClientError> for StreamDeleteError
impl From<ClientError> for StreamDeleteError
Source§fn from(source: ClientError) -> Self
fn from(source: ClientError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StreamDeleteError
impl !RefUnwindSafe for StreamDeleteError
impl Send for StreamDeleteError
impl Sync for StreamDeleteError
impl Unpin for StreamDeleteError
impl !UnwindSafe for StreamDeleteError
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