pub struct RoleProjectionReceipt<L> {
pub safepoint: SafepointReceipt,
pub mutation_epoch: u64,
pub roles: Vec<(ManagedId, L)>,
}Expand description
Bounded, allocation-ordered audit evidence projected from one safepoint.
Labels are caller-owned metadata. They are deliberately absent from tracing and collection contracts, so changing them cannot affect reachability or reclamation policy.
Fields§
§safepoint: SafepointReceiptThe base tracing receipt this optional evidence describes.
mutation_epoch: u64Arena mutation epoch observed by the projection.
roles: Vec<(ManagedId, L)>Owner identities and labels in managed allocation order.
Trait Implementations§
Source§impl<L: Clone> Clone for RoleProjectionReceipt<L>
impl<L: Clone> Clone for RoleProjectionReceipt<L>
Source§fn clone(&self) -> RoleProjectionReceipt<L>
fn clone(&self) -> RoleProjectionReceipt<L>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<L: Debug> Debug for RoleProjectionReceipt<L>
impl<L: Debug> Debug for RoleProjectionReceipt<L>
impl<L: Eq> Eq for RoleProjectionReceipt<L>
Source§impl<L: PartialEq> PartialEq for RoleProjectionReceipt<L>
impl<L: PartialEq> PartialEq for RoleProjectionReceipt<L>
impl<L: PartialEq> StructuralPartialEq for RoleProjectionReceipt<L>
Auto Trait Implementations§
impl<L> Freeze for RoleProjectionReceipt<L>
impl<L> RefUnwindSafe for RoleProjectionReceipt<L>where
L: RefUnwindSafe,
impl<L> Send for RoleProjectionReceipt<L>where
L: Send,
impl<L> Sync for RoleProjectionReceipt<L>where
L: Sync,
impl<L> Unpin for RoleProjectionReceipt<L>where
L: Unpin,
impl<L> UnsafeUnpin for RoleProjectionReceipt<L>
impl<L> UnwindSafe for RoleProjectionReceipt<L>where
L: UnwindSafe,
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