pub enum MqInqError {
Length(MQLONG, Error),
MQ(Error),
}
Variants§
Trait Implementations§
Source§impl Debug for MqInqError
impl Debug for MqInqError
Source§impl Display for MqInqError
impl Display for MqInqError
Source§impl Error for MqInqError
impl Error for MqInqError
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 MqInqError
impl From<Error> for MqInqError
Source§impl From<MqInqError> for Error
impl From<MqInqError> for Error
Source§fn from(value: MqInqError) -> Self
fn from(value: MqInqError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MqInqError
impl RefUnwindSafe for MqInqError
impl Send for MqInqError
impl Sync for MqInqError
impl Unpin for MqInqError
impl UnwindSafe for MqInqError
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