pub struct EncryptionNotSupported;
Expand description
Error returned when a VMGS file is requested to be opened in encrypted mode, but the vmgstool was not compiled with encryption support.
Trait Implementations§
Source§impl Debug for EncryptionNotSupported
impl Debug for EncryptionNotSupported
Source§impl Display for EncryptionNotSupported
impl Display for EncryptionNotSupported
Source§impl Error for EncryptionNotSupported
impl Error for EncryptionNotSupported
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<EncryptionNotSupported> for Error
impl From<EncryptionNotSupported> for Error
Source§fn from(source: EncryptionNotSupported) -> Self
fn from(source: EncryptionNotSupported) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EncryptionNotSupported
impl RefUnwindSafe for EncryptionNotSupported
impl Send for EncryptionNotSupported
impl Sync for EncryptionNotSupported
impl Unpin for EncryptionNotSupported
impl UnwindSafe for EncryptionNotSupported
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