pub enum WriteCommandError {
FrameRenderError(FrameRenderError),
WriteError(Error),
}
Variants§
FrameRenderError(FrameRenderError)
WriteError(Error)
Trait Implementations§
Source§impl Debug for WriteCommandError
impl Debug for WriteCommandError
Source§impl Display for WriteCommandError
impl Display for WriteCommandError
Source§impl Error for WriteCommandError
impl Error for WriteCommandError
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<Error> for WriteCommandError
impl From<Error> for WriteCommandError
Source§impl From<FrameRenderError> for WriteCommandError
impl From<FrameRenderError> for WriteCommandError
Source§fn from(source: FrameRenderError) -> Self
fn from(source: FrameRenderError) -> Self
Converts to this type from the input type.
Source§impl From<WriteCommandError> for ConnectRespondError
impl From<WriteCommandError> for ConnectRespondError
Source§fn from(err: WriteCommandError) -> Self
fn from(err: WriteCommandError) -> Self
Converts to this type from the input type.
Source§impl From<WriteCommandError> for ConsumerAckRespondError
impl From<WriteCommandError> for ConsumerAckRespondError
Source§fn from(err: WriteCommandError) -> Self
fn from(err: WriteCommandError) -> Self
Converts to this type from the input type.
Source§impl From<WriteCommandError> for ConsumerFlowHalfRequestError
impl From<WriteCommandError> for ConsumerFlowHalfRequestError
Source§fn from(err: WriteCommandError) -> Self
fn from(err: WriteCommandError) -> Self
Converts to this type from the input type.
Source§impl From<WriteCommandError> for ConsumerRedeliverUnacknowledgedMessagesHalfRequestError
impl From<WriteCommandError> for ConsumerRedeliverUnacknowledgedMessagesHalfRequestError
Source§fn from(err: WriteCommandError) -> Self
fn from(err: WriteCommandError) -> Self
Converts to this type from the input type.
Source§impl From<WriteCommandError> for ProducerSendRespondError
impl From<WriteCommandError> for ProducerSendRespondError
Source§fn from(err: WriteCommandError) -> Self
fn from(err: WriteCommandError) -> Self
Converts to this type from the input type.
Source§impl From<WriteCommandError> for SessionCreateConsumerRespondError
impl From<WriteCommandError> for SessionCreateConsumerRespondError
Source§fn from(err: WriteCommandError) -> Self
fn from(err: WriteCommandError) -> Self
Converts to this type from the input type.
Source§impl From<WriteCommandError> for SessionCreateProducerRespondError
impl From<WriteCommandError> for SessionCreateProducerRespondError
Source§fn from(err: WriteCommandError) -> Self
fn from(err: WriteCommandError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WriteCommandError
impl !RefUnwindSafe for WriteCommandError
impl Send for WriteCommandError
impl Sync for WriteCommandError
impl Unpin for WriteCommandError
impl !UnwindSafe for WriteCommandError
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