pub enum ReclaimActivation<'a> {
Commit(&'a StoreBatchCommitRef),
CircleSnapshotMetadata(CircleSnapshotStreamActivation<'a>),
StoreSnapshotMetadata(StoreSnapshotStreamActivation<'a>),
PackageBlobBinding(PackageBlobBindingActivation<'a>),
}Expand description
The signed statement that put a reclaim target into the shared live set — the authority a verifier re-reads to confirm the Owner is deleting what its claim says. It follows how the object was published: a Store commit names packages and the bootstrap images its Circle-control activations carry; a device’s per-Circle snapshot stream names its own images through signed metadata that rides no commit at all; and a row blob is named by the bindings of the package that published the row, not by the commit body.
Variants§
Commit(&'a StoreBatchCommitRef)
CircleSnapshotMetadata(CircleSnapshotStreamActivation<'a>)
StoreSnapshotMetadata(StoreSnapshotStreamActivation<'a>)
PackageBlobBinding(PackageBlobBindingActivation<'a>)
Implementations§
Source§impl ReclaimActivation<'_>
impl ReclaimActivation<'_>
Sourcepub fn object(&self) -> &ExactObjectRef
pub fn object(&self) -> &ExactObjectRef
The exact object carrying the activating signature. Reclaim identity checks use it to refuse a target that aliases its own authority.
Auto Trait Implementations§
impl<'a> Freeze for ReclaimActivation<'a>
impl<'a> RefUnwindSafe for ReclaimActivation<'a>
impl<'a> Send for ReclaimActivation<'a>
impl<'a> Sync for ReclaimActivation<'a>
impl<'a> Unpin for ReclaimActivation<'a>
impl<'a> UnsafeUnpin for ReclaimActivation<'a>
impl<'a> UnwindSafe for ReclaimActivation<'a>
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