pub enum VmgsFileResolverError {
Store(EncryptionNotSupported),
Client(ResolveError),
}Expand description
Errors that can occur while resolving a VMGS file.
Variants§
Store(EncryptionNotSupported)
Error creating the VMGS non-volatile store.
Client(ResolveError)
Error resolving the underlying non-volatile store.
Trait Implementations§
Source§impl Debug for VmgsFileResolverError
impl Debug for VmgsFileResolverError
Source§impl Display for VmgsFileResolverError
impl Display for VmgsFileResolverError
Source§impl Error for VmgsFileResolverError
impl Error for VmgsFileResolverError
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()
Auto Trait Implementations§
impl Freeze for VmgsFileResolverError
impl !RefUnwindSafe for VmgsFileResolverError
impl Send for VmgsFileResolverError
impl Sync for VmgsFileResolverError
impl Unpin for VmgsFileResolverError
impl UnsafeUnpin for VmgsFileResolverError
impl !UnwindSafe for VmgsFileResolverError
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