Enum ntex_mqtt::error::EncodeError
source · [−]pub enum EncodeError {
InvalidLength,
MalformedPacket,
PacketIdRequired,
UnsupportedVersion,
}
Variants
InvalidLength
MalformedPacket
PacketIdRequired
UnsupportedVersion
Trait Implementations
sourceimpl Clone for EncodeError
impl Clone for EncodeError
sourcefn clone(&self) -> EncodeError
fn clone(&self) -> EncodeError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for EncodeError
impl Debug for EncodeError
sourceimpl Display for EncodeError
impl Display for EncodeError
sourceimpl Error for EncodeError
impl Error for EncodeError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<EncodeError> for ProtocolError
impl From<EncodeError> for ProtocolError
sourcefn from(original: EncodeError) -> ProtocolError
fn from(original: EncodeError) -> ProtocolError
Converts to this type from the input type.
sourceimpl Hash for EncodeError
impl Hash for EncodeError
sourceimpl PartialEq<EncodeError> for EncodeError
impl PartialEq<EncodeError> for EncodeError
sourcefn eq(&self, other: &EncodeError) -> bool
fn eq(&self, other: &EncodeError) -> bool
impl Copy for EncodeError
impl Eq for EncodeError
impl StructuralEq for EncodeError
impl StructuralPartialEq for EncodeError
Auto Trait Implementations
impl RefUnwindSafe for EncodeError
impl Send for EncodeError
impl Sync for EncodeError
impl Unpin for EncodeError
impl UnwindSafe for EncodeError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.