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 Freeze for SequentialRestriction
impl RefUnwindSafe for SequentialRestriction
impl Send for SequentialRestriction
impl Sync for SequentialRestriction
impl Unpin for SequentialRestriction
impl UnwindSafe for SequentialRestriction
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