Struct miri::AllocExtra
source · pub struct AllocExtra {
pub borrow_tracker: Option<AllocState>,
pub data_race: Option<VClockAlloc>,
pub weak_memory: Option<StoreBufferAlloc>,
}
Expand description
Extra per-allocation data
Fields§
§borrow_tracker: Option<AllocState>
Global state of the borrow tracker, if enabled.
data_race: Option<VClockAlloc>
Data race detection via the use of a vector-clock, this is only added if it is enabled.
weak_memory: Option<StoreBufferAlloc>
Weak memory emulation via the use of store buffers, this is only added if it is enabled.
Implementations§
source§impl AllocExtra
impl AllocExtra
pub fn borrow_tracker_sb(&self) -> &RefCell<Stacks>
pub fn borrow_tracker_sb_mut(&mut self) -> &mut RefCell<Stacks>
Trait Implementations§
source§impl Clone for AllocExtra
impl Clone for AllocExtra
source§fn clone(&self) -> AllocExtra
fn clone(&self) -> AllocExtra
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AllocExtra
impl Debug for AllocExtra
source§impl VisitTags for AllocExtra
impl VisitTags for AllocExtra
Auto Trait Implementations§
impl !RefUnwindSafe for AllocExtra
impl !Send for AllocExtra
impl !Sync for AllocExtra
impl Unpin for AllocExtra
impl UnwindSafe for AllocExtra
Blanket Implementations§
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 88 bytes