Enum vstd::rwlock::RwLockToks::Step
source · pub enum Step<K, V, Pred: InvariantPredicate<K, V>> {
acquire_read_start(),
acquire_read_end(),
acquire_read_abandon(),
acquire_exc_start(),
acquire_exc_end(),
release_exc(V),
release_shared(V),
dummy_to_use_type_params(State<K, V, Pred>),
}
Variants§
acquire_read_start()
acquire_read_end()
acquire_read_abandon()
acquire_exc_start()
acquire_exc_end()
release_exc(V)
dummy_to_use_type_params(State<K, V, Pred>)
Implementations§
source§impl<K, V, Pred: InvariantPredicate<K, V>> Step<K, V, Pred>
impl<K, V, Pred: InvariantPredicate<K, V>> Step<K, V, Pred>
pub fn arrow_release_exc_0(self) -> V
pub fn arrow_dummy_to_use_type_params_0(self) -> State<K, V, Pred>
source§impl<K, V, Pred: InvariantPredicate<K, V>> Step<K, V, Pred>
impl<K, V, Pred: InvariantPredicate<K, V>> Step<K, V, Pred>
sourcepub exec fn is_acquire_read_start(&self) -> bool
pub exec fn is_acquire_read_start(&self) -> bool
sourcepub exec fn is_acquire_read_end(&self) -> bool
pub exec fn is_acquire_read_end(&self) -> bool
sourcepub exec fn is_acquire_read_abandon(&self) -> bool
pub exec fn is_acquire_read_abandon(&self) -> bool
sourcepub exec fn is_acquire_exc_start(&self) -> bool
pub exec fn is_acquire_exc_start(&self) -> bool
sourcepub exec fn is_acquire_exc_end(&self) -> bool
pub exec fn is_acquire_exc_end(&self) -> bool
sourcepub exec fn is_release_exc(&self) -> bool
pub exec fn is_release_exc(&self) -> bool
sourcepub exec fn get_release_exc_0(self) -> V
pub exec fn get_release_exc_0(self) -> V
sourcepub exec fn is_dummy_to_use_type_params(&self) -> bool
pub exec fn is_dummy_to_use_type_params(&self) -> bool
sourcepub exec fn get_dummy_to_use_type_params_0(self) -> State<K, V, Pred>
pub exec fn get_dummy_to_use_type_params_0(self) -> State<K, V, Pred>
Auto Trait Implementations§
impl<K, V, Pred> RefUnwindSafe for Step<K, V, Pred>
impl<K, V, Pred> Send for Step<K, V, Pred>
impl<K, V, Pred> Sync for Step<K, V, Pred>
impl<K, V, Pred> Unpin for Step<K, V, Pred>
impl<K, V, Pred> UnwindSafe for Step<K, V, Pred>
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