Struct vstd::atomic_ghost::AtomicBool
source · pub struct AtomicBool<K, G, Pred> { /* private fields */ }
Expand description
Sequentially-consistent atomic memory location storing a bool
and associated ghost state.
See the atomic_with_ghost!
documentation for usage information.
Implementations§
source§impl<K, G, Pred> AtomicBool<K, G, Pred>where
Pred: AtomicInvariantPredicate<K, bool, G>,
impl<K, G, Pred> AtomicBool<K, G, Pred>where
Pred: AtomicInvariantPredicate<K, bool, G>,
sourcepub open spec fn well_formed(&self) -> bool
pub open spec fn well_formed(&self) -> bool
{ self.atomic_inv@.constant().1 == self.patomic.id() }
sourcepub const exec fn new(
verus_tmp_k: Ghost<K>,
u: bool,
verus_tmp_g: Tracked<G>
) -> t : Self
pub const exec fn new( verus_tmp_k: Ghost<K>, u: bool, verus_tmp_g: Tracked<G> ) -> t : Self
requires
Pred::atomic_inv(k, u, g),
ensurest.well_formed() && t.constant() == k,
sourcepub exec fn into_inner(self) -> res : (bool, Tracked<G>)
pub exec fn into_inner(self) -> res : (bool, Tracked<G>)
requires
self.well_formed(),
ensuresPred::atomic_inv(self.constant(), res.0, res.1@),
Auto Trait Implementations§
impl<K, G, Pred> RefUnwindSafe for AtomicBool<K, G, Pred>
impl<K, G, Pred> Send for AtomicBool<K, G, Pred>where
G: Send,
impl<K, G, Pred> Sync for AtomicBool<K, G, Pred>where
G: Send,
impl<K, G, Pred> Unpin for AtomicBool<K, G, Pred>
impl<K, G, Pred> UnwindSafe for AtomicBool<K, G, 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