pub enum OptionError {
Scheme,
ClientId,
KeepAlive,
CleanSession,
MaxIncomingPacketSize,
MaxOutgoingPacketSize,
RequestChannelCapacity,
MaxRequestBatch,
PendingThrottle,
Inflight,
ConnTimeout,
Unknown(String),
}Available on crate feature
url only.Variants§
Scheme
ClientId
KeepAlive
CleanSession
MaxIncomingPacketSize
MaxOutgoingPacketSize
RequestChannelCapacity
MaxRequestBatch
PendingThrottle
Inflight
ConnTimeout
Unknown(String)
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
1.30.0 · 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 PartialEq for OptionError
impl PartialEq 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