/// Result of a sync operation.
#[derive(Debug, Clone, PartialEq, Eq)]pubstructSyncResult{/// Number of secrets re-encrypted
pubsecrets:usize,
/// Number of recipients in the current set
pubrecipients:usize,
/// Whether re-encryption was actually needed
pubwas_needed:bool,
}