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