pub enum StaticStorageUnlockError {
InsufficientPermissions,
NoSpaceLeft,
InternalError,
}Variants§
Trait Implementations§
Source§impl Clone for StaticStorageUnlockError
impl Clone for StaticStorageUnlockError
Source§fn clone(&self) -> StaticStorageUnlockError
fn clone(&self) -> StaticStorageUnlockError
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 StaticStorageUnlockError
impl Debug for StaticStorageUnlockError
Source§impl Display for StaticStorageUnlockError
impl Display for StaticStorageUnlockError
Source§impl Error for StaticStorageUnlockError
impl Error for StaticStorageUnlockError
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 Hash for StaticStorageUnlockError
impl Hash for StaticStorageUnlockError
Source§impl PartialEq for StaticStorageUnlockError
impl PartialEq for StaticStorageUnlockError
Source§fn eq(&self, other: &StaticStorageUnlockError) -> bool
fn eq(&self, other: &StaticStorageUnlockError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StaticStorageUnlockError
impl Eq for StaticStorageUnlockError
impl StructuralPartialEq for StaticStorageUnlockError
Auto Trait Implementations§
impl Freeze for StaticStorageUnlockError
impl RefUnwindSafe for StaticStorageUnlockError
impl Send for StaticStorageUnlockError
impl Sync for StaticStorageUnlockError
impl Unpin for StaticStorageUnlockError
impl UnsafeUnpin for StaticStorageUnlockError
impl UnwindSafe for StaticStorageUnlockError
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