Enum specs::storage::SequentialRestriction
source · [−]pub enum SequentialRestriction {}
Expand description
Specifies that the RestrictedStorage
cannot run in parallel.
A mutable RestrictedStorage
can call get
, get_mut
, get_unchecked
and
get_mut_unchecked
for deferred/restricted access while an immutable
version can only call the immutable accessors.
Auto Trait Implementations
impl RefUnwindSafe for SequentialRestriction
impl Send for SequentialRestriction
impl Sync for SequentialRestriction
impl Unpin for SequentialRestriction
impl UnwindSafe for SequentialRestriction
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more