pub struct MergedCredentials {
pub credentials_imported: usize,
pub credentials_already_present: usize,
pub tel_events_imported: usize,
pub tel_events_already_present: usize,
}Expand description
What the credential + TEL merge did, counted over the whole registry.
The KEL merge (merge_registries) is the trust core — it authenticates
every imported event. This report covers the artifact layer that rides on
top of those authenticated KELs: the ACDC credential bodies and their TEL
chains, which a cold machine needs to re-verify a credential end-to-end.
Fields§
§credentials_imported: usizeCredential bodies newly written to the destination.
credentials_already_present: usizeCredential bodies the destination already held (idempotent skip).
tel_events_imported: usizeTEL events newly written to the destination.
tel_events_already_present: usizeTEL events the destination already held (idempotent skip).
Trait Implementations§
Source§impl Clone for MergedCredentials
impl Clone for MergedCredentials
Source§fn clone(&self) -> MergedCredentials
fn clone(&self) -> MergedCredentials
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 MergedCredentials
impl Debug for MergedCredentials
Source§impl Default for MergedCredentials
impl Default for MergedCredentials
Source§fn default() -> MergedCredentials
fn default() -> MergedCredentials
Returns the “default value” for a type. Read more
impl Eq for MergedCredentials
Source§impl PartialEq for MergedCredentials
impl PartialEq for MergedCredentials
Source§impl Serialize for MergedCredentials
impl Serialize for MergedCredentials
impl StructuralPartialEq for MergedCredentials
Auto Trait Implementations§
impl Freeze for MergedCredentials
impl RefUnwindSafe for MergedCredentials
impl Send for MergedCredentials
impl Sync for MergedCredentials
impl Unpin for MergedCredentials
impl UnsafeUnpin for MergedCredentials
impl UnwindSafe for MergedCredentials
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.