Enum unlock_excel::error::Password
source · pub enum Password {
Decrypt(DataEncryption),
None(PasswordNone),
Hash(PasswordHash),
PlainText(PasswordPlain),
NoData,
}Variants§
Trait Implementations§
source§impl From<DataEncryption> for Password
impl From<DataEncryption> for Password
source§fn from(value: DataEncryption) -> Self
fn from(value: DataEncryption) -> Self
Converts to this type from the input type.
source§impl From<Password> for ProjectStructure
impl From<Password> for ProjectStructure
source§impl From<Password> for UnlockError
impl From<Password> for UnlockError
source§impl From<PasswordHash> for Password
impl From<PasswordHash> for Password
source§fn from(value: PasswordHash) -> Self
fn from(value: PasswordHash) -> Self
Converts to this type from the input type.
source§impl From<PasswordNone> for Password
impl From<PasswordNone> for Password
source§fn from(value: PasswordNone) -> Self
fn from(value: PasswordNone) -> Self
Converts to this type from the input type.
source§impl From<PasswordPlain> for Password
impl From<PasswordPlain> for Password
source§fn from(value: PasswordPlain) -> Self
fn from(value: PasswordPlain) -> Self
Converts to this type from the input type.
source§impl PartialEq for Password
impl PartialEq for Password
impl Eq for Password
impl StructuralPartialEq for Password
Auto Trait Implementations§
impl RefUnwindSafe for Password
impl Send for Password
impl Sync for Password
impl Unpin for Password
impl UnwindSafe for Password
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