pub enum CircleBootstrapReclaimProof {
RecipientCoverage {
acknowledgement: CircleAckRef,
},
LostAuthority {
acknowledgement: CircleAckRef,
successor_control: CircleControlCoord,
},
}Expand description
The two proofs an Owner can present that a recipient no longer needs its seed
image. Both carry the recipient device’s own activated Circle acknowledgement,
whose seeded_from names the target coverage — binding the proof to the exact
image being deleted. The authorization verifier re-loads and re-checks the
acknowledgement; nothing here is trusted from the claim alone.
Variants§
RecipientCoverage
The recipient advanced past its seed: its acknowledgement’s accepted Store frontier strictly dominates the bootstrap’s cut, and its owner still holds active Circle access.
Fields
§
acknowledgement: CircleAckRefLostAuthority
The recipient lost Circle authority: its owner is absent from the roster of an activated successor control that strictly covers the seed’s control.
Implementations§
Source§impl CircleBootstrapReclaimProof
impl CircleBootstrapReclaimProof
pub fn acknowledgement(&self) -> &CircleAckRef
Trait Implementations§
Source§impl Clone for CircleBootstrapReclaimProof
impl Clone for CircleBootstrapReclaimProof
Source§fn clone(&self) -> CircleBootstrapReclaimProof
fn clone(&self) -> CircleBootstrapReclaimProof
Returns a duplicate 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 CircleBootstrapReclaimProof
impl Debug for CircleBootstrapReclaimProof
Source§impl<'de> Deserialize<'de> for CircleBootstrapReclaimProof
impl<'de> Deserialize<'de> for CircleBootstrapReclaimProof
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CircleBootstrapReclaimProof
impl StructuralPartialEq for CircleBootstrapReclaimProof
Auto Trait Implementations§
impl Freeze for CircleBootstrapReclaimProof
impl RefUnwindSafe for CircleBootstrapReclaimProof
impl Send for CircleBootstrapReclaimProof
impl Sync for CircleBootstrapReclaimProof
impl Unpin for CircleBootstrapReclaimProof
impl UnsafeUnpin for CircleBootstrapReclaimProof
impl UnwindSafe for CircleBootstrapReclaimProof
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.