pub enum SecureValueError {
Data(SecureValueErrorData),
FrontSide(SecureValueErrorFrontSide),
ReverseSide(SecureValueErrorReverseSide),
Selfie(SecureValueErrorSelfie),
File(SecureValueErrorFile),
Files(SecureValueErrorFiles),
SecureValueError(SecureValueError),
TranslationFile(SecureValueErrorTranslationFile),
TranslationFiles(SecureValueErrorTranslationFiles),
}Expand description
Variants§
Data(SecureValueErrorData)
FrontSide(SecureValueErrorFrontSide)
ReverseSide(SecureValueErrorReverseSide)
Selfie(SecureValueErrorSelfie)
File(SecureValueErrorFile)
Files(SecureValueErrorFiles)
SecureValueError(SecureValueError)
TranslationFile(SecureValueErrorTranslationFile)
TranslationFiles(SecureValueErrorTranslationFiles)
Trait Implementations§
Source§impl Clone for SecureValueError
impl Clone for SecureValueError
Source§fn clone(&self) -> SecureValueError
fn clone(&self) -> SecureValueError
Returns a duplicate 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 SecureValueError
impl Debug for SecureValueError
Source§impl Deserializable for SecureValueError
impl Deserializable for SecureValueError
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<SecureValueError> for SecureValueError
impl From<SecureValueError> for SecureValueError
Source§fn from(x: SecureValueError) -> Self
fn from(x: SecureValueError) -> Self
Converts to this type from the input type.
Source§impl From<SecureValueErrorData> for SecureValueError
impl From<SecureValueErrorData> for SecureValueError
Source§fn from(x: SecureValueErrorData) -> Self
fn from(x: SecureValueErrorData) -> Self
Converts to this type from the input type.
Source§impl From<SecureValueErrorFile> for SecureValueError
impl From<SecureValueErrorFile> for SecureValueError
Source§fn from(x: SecureValueErrorFile) -> Self
fn from(x: SecureValueErrorFile) -> Self
Converts to this type from the input type.
Source§impl From<SecureValueErrorFiles> for SecureValueError
impl From<SecureValueErrorFiles> for SecureValueError
Source§fn from(x: SecureValueErrorFiles) -> Self
fn from(x: SecureValueErrorFiles) -> Self
Converts to this type from the input type.
Source§impl From<SecureValueErrorFrontSide> for SecureValueError
impl From<SecureValueErrorFrontSide> for SecureValueError
Source§fn from(x: SecureValueErrorFrontSide) -> Self
fn from(x: SecureValueErrorFrontSide) -> Self
Converts to this type from the input type.
Source§impl From<SecureValueErrorReverseSide> for SecureValueError
impl From<SecureValueErrorReverseSide> for SecureValueError
Source§fn from(x: SecureValueErrorReverseSide) -> Self
fn from(x: SecureValueErrorReverseSide) -> Self
Converts to this type from the input type.
Source§impl From<SecureValueErrorSelfie> for SecureValueError
impl From<SecureValueErrorSelfie> for SecureValueError
Source§fn from(x: SecureValueErrorSelfie) -> Self
fn from(x: SecureValueErrorSelfie) -> Self
Converts to this type from the input type.
Source§impl From<SecureValueErrorTranslationFile> for SecureValueError
impl From<SecureValueErrorTranslationFile> for SecureValueError
Source§fn from(x: SecureValueErrorTranslationFile) -> Self
fn from(x: SecureValueErrorTranslationFile) -> Self
Converts to this type from the input type.
Source§impl From<SecureValueErrorTranslationFiles> for SecureValueError
impl From<SecureValueErrorTranslationFiles> for SecureValueError
Source§fn from(x: SecureValueErrorTranslationFiles) -> Self
fn from(x: SecureValueErrorTranslationFiles) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SecureValueError
impl PartialEq for SecureValueError
Source§impl Serializable for SecureValueError
impl Serializable for SecureValueError
Source§impl TryFrom<SecureValueError> for SecureValueError
impl TryFrom<SecureValueError> for SecureValueError
Source§type Error = SecureValueError
type Error = SecureValueError
The type returned in the event of a conversion error.
Source§impl TryFrom<SecureValueError> for SecureValueErrorData
impl TryFrom<SecureValueError> for SecureValueErrorData
Source§type Error = SecureValueError
type Error = SecureValueError
The type returned in the event of a conversion error.
Source§impl TryFrom<SecureValueError> for SecureValueErrorFile
impl TryFrom<SecureValueError> for SecureValueErrorFile
Source§type Error = SecureValueError
type Error = SecureValueError
The type returned in the event of a conversion error.
Source§impl TryFrom<SecureValueError> for SecureValueErrorFiles
impl TryFrom<SecureValueError> for SecureValueErrorFiles
Source§type Error = SecureValueError
type Error = SecureValueError
The type returned in the event of a conversion error.
Source§impl TryFrom<SecureValueError> for SecureValueErrorFrontSide
impl TryFrom<SecureValueError> for SecureValueErrorFrontSide
Source§type Error = SecureValueError
type Error = SecureValueError
The type returned in the event of a conversion error.
Source§impl TryFrom<SecureValueError> for SecureValueErrorReverseSide
impl TryFrom<SecureValueError> for SecureValueErrorReverseSide
Source§type Error = SecureValueError
type Error = SecureValueError
The type returned in the event of a conversion error.
Source§impl TryFrom<SecureValueError> for SecureValueErrorSelfie
impl TryFrom<SecureValueError> for SecureValueErrorSelfie
Source§type Error = SecureValueError
type Error = SecureValueError
The type returned in the event of a conversion error.
Source§impl TryFrom<SecureValueError> for SecureValueErrorTranslationFile
impl TryFrom<SecureValueError> for SecureValueErrorTranslationFile
Source§type Error = SecureValueError
type Error = SecureValueError
The type returned in the event of a conversion error.
Source§impl TryFrom<SecureValueError> for SecureValueErrorTranslationFiles
impl TryFrom<SecureValueError> for SecureValueErrorTranslationFiles
Source§type Error = SecureValueError
type Error = SecureValueError
The type returned in the event of a conversion error.
impl StructuralPartialEq for SecureValueError
Auto Trait Implementations§
impl Freeze for SecureValueError
impl RefUnwindSafe for SecureValueError
impl Send for SecureValueError
impl Sync for SecureValueError
impl Unpin for SecureValueError
impl UnsafeUnpin for SecureValueError
impl UnwindSafe for SecureValueError
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