pub enum OptionError {
Show 13 variants
Scheme,
ClientId,
KeepAlive,
CleanStart,
MaxIncomingPacketSize,
MaxOutgoingPacketSize,
RequestChannelCapacity,
MaxRequestBatch,
PendingThrottle,
Inflight,
ConnTimeout,
Unknown(String),
Parse(ParseError),
}
Variants§
Scheme
ClientId
KeepAlive
CleanStart
MaxIncomingPacketSize
MaxOutgoingPacketSize
RequestChannelCapacity
MaxRequestBatch
PendingThrottle
Inflight
ConnTimeout
Unknown(String)
Parse(ParseError)
Trait Implementations§
Source§impl Debug for OptionError
impl Debug for OptionError
Source§impl Display for OptionError
impl Display for OptionError
Source§impl Error for OptionError
impl Error for OptionError
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<ParseError> for OptionError
impl From<ParseError> for OptionError
Source§fn from(source: ParseError) -> Self
fn from(source: ParseError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for OptionError
impl PartialEq for OptionError
impl Eq for OptionError
impl StructuralPartialEq for OptionError
Auto Trait Implementations§
impl Freeze for OptionError
impl RefUnwindSafe for OptionError
impl Send for OptionError
impl Sync for OptionError
impl Unpin for OptionError
impl UnwindSafe for OptionError
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