pub struct PerRegionErasureProgress {
pub schema_version: u16,
pub user: UserId,
pub scope: ProgressScope,
pub shred_tick: Tick,
pub attestation_class: RuntimeSignatureClass,
pub attestation_bytes: Bytes,
}Expand description
PerRegionErasureProgress — multi-region or multi-KMS DEK-shred progress
record (two-phase-commit).
Fields§
§schema_version: u16Wire schema version.
user: UserIdTarget User.
scope: ProgressScopeProgress scope — region or KMS identifier.
shred_tick: TickTick at which this scope’s shred completed.
attestation_class: RuntimeSignatureClassSignature class used for the attestation payload.
attestation_bytes: BytesHSM attestation bytes for this scope.
Trait Implementations§
Source§impl ArkheEvent for PerRegionErasureProgress
impl ArkheEvent for PerRegionErasureProgress
Source§impl Clone for PerRegionErasureProgress
impl Clone for PerRegionErasureProgress
Source§fn clone(&self) -> PerRegionErasureProgress
fn clone(&self) -> PerRegionErasureProgress
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 Debug for PerRegionErasureProgress
impl Debug for PerRegionErasureProgress
Source§impl<'de> Deserialize<'de> for PerRegionErasureProgress
impl<'de> Deserialize<'de> for PerRegionErasureProgress
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
Source§impl PartialEq for PerRegionErasureProgress
impl PartialEq for PerRegionErasureProgress
Source§fn eq(&self, other: &PerRegionErasureProgress) -> bool
fn eq(&self, other: &PerRegionErasureProgress) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PerRegionErasureProgress
impl Serialize for PerRegionErasureProgress
impl Eq for PerRegionErasureProgress
impl StructuralPartialEq for PerRegionErasureProgress
Auto Trait Implementations§
impl !Freeze for PerRegionErasureProgress
impl RefUnwindSafe for PerRegionErasureProgress
impl Send for PerRegionErasureProgress
impl Sync for PerRegionErasureProgress
impl Unpin for PerRegionErasureProgress
impl UnsafeUnpin for PerRegionErasureProgress
impl UnwindSafe for PerRegionErasureProgress
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