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)

§

release_shared(V)

§

dummy_to_use_type_params(State<K, V, Pred>)

Implementations§

source§

impl<K, V, Pred: InvariantPredicate<K, V>> Step<K, V, Pred>

source

pub fn arrow_release_exc_0(self) -> V

source

pub fn arrow_release_shared_0(self) -> V

source

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>

source

pub exec fn is_acquire_read_start(&self) -> bool

source

pub exec fn is_acquire_read_end(&self) -> bool

source

pub exec fn is_acquire_read_abandon(&self) -> bool

source

pub exec fn is_acquire_exc_start(&self) -> bool

source

pub exec fn is_acquire_exc_end(&self) -> bool

source

pub exec fn is_release_exc(&self) -> bool

source

pub exec fn get_release_exc_0(self) -> V

source

pub exec fn is_release_shared(&self) -> bool

source

pub exec fn get_release_shared_0(self) -> V

source

pub exec fn is_dummy_to_use_type_params(&self) -> bool

source

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>
where K: Send, Pred: Send, V: Send,

§

impl<K, V, Pred> Sync for Step<K, V, Pred>
where K: Sync, Pred: Sync, V: Sync,

§

impl<K, V, Pred> Unpin for Step<K, V, Pred>
where K: Unpin, Pred: Unpin, V: Unpin,

§

impl<K, V, Pred> UnwindSafe for Step<K, V, Pred>
where K: UnwindSafe, Pred: UnwindSafe, V: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.