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