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