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 duplicate of the value. Read more
1.0.0 (const: unstable) · 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
impl Eq for AuthenticateDataDecodeError
Source§impl IntoBoundedStatic for AuthenticateDataDecodeError
Available on crate feature bounded-static only.
impl IntoBoundedStatic for AuthenticateDataDecodeError
Available on crate feature
bounded-static only.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 StructuralPartialEq for AuthenticateDataDecodeError
Source§impl ToBoundedStatic for AuthenticateDataDecodeError
Available on crate feature bounded-static only.
impl ToBoundedStatic for AuthenticateDataDecodeError
Available on crate feature
bounded-static only.Auto Trait Implementations§
impl Freeze for AuthenticateDataDecodeError
impl RefUnwindSafe for AuthenticateDataDecodeError
impl Send for AuthenticateDataDecodeError
impl Sync for AuthenticateDataDecodeError
impl Unpin for AuthenticateDataDecodeError
impl UnsafeUnpin 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