pub enum AuthenticateDataDecodeError {
Incomplete,
Failed,
}
Expand description
Error during authenticate data line decoding.
Variants§
Trait Implementations§
Source§impl Clone for AuthenticateDataDecodeError
impl Clone for AuthenticateDataDecodeError
Source§fn clone(&self) -> AuthenticateDataDecodeError
fn clone(&self) -> AuthenticateDataDecodeError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AuthenticateDataDecodeError
impl Debug for AuthenticateDataDecodeError
Source§impl IntoBoundedStatic for AuthenticateDataDecodeError
impl IntoBoundedStatic for AuthenticateDataDecodeError
Source§type Static = AuthenticateDataDecodeError
type Static = AuthenticateDataDecodeError
The target type is bounded by the
'static
lifetime.Source§fn into_static(self) -> Self::Static
fn into_static(self) -> Self::Static
Convert an owned
T
into an owned T
such that T: 'static
.impl Eq for AuthenticateDataDecodeError
impl StructuralPartialEq for AuthenticateDataDecodeError
Auto Trait Implementations§
impl Freeze for AuthenticateDataDecodeError
impl RefUnwindSafe for AuthenticateDataDecodeError
impl Send for AuthenticateDataDecodeError
impl Sync for AuthenticateDataDecodeError
impl Unpin for AuthenticateDataDecodeError
impl UnwindSafe for AuthenticateDataDecodeError
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