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