pub struct KeyHistoryEntry {
pub key: String,
pub status: KeyHistoryStatus,
pub retired_at_epoch_ms: u64,
pub replaced_by: Option<String>,
pub effective_serial: Option<u64>,
pub rotation_signature: Option<String>,
pub revoked_at_epoch_ms: Option<u64>,
}Expand description
A historical public key entry, kept for verified rotations/revocations.
Fields§
§key: String§status: KeyHistoryStatus§retired_at_epoch_ms: u64§replaced_by: Option<String>§effective_serial: Option<u64>§rotation_signature: Option<String>§revoked_at_epoch_ms: Option<u64>Implementations§
Trait Implementations§
Source§impl Clone for KeyHistoryEntry
impl Clone for KeyHistoryEntry
Source§fn clone(&self) -> KeyHistoryEntry
fn clone(&self) -> KeyHistoryEntry
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 KeyHistoryEntry
impl Debug for KeyHistoryEntry
Source§impl<'de> Deserialize<'de> for KeyHistoryEntry
impl<'de> Deserialize<'de> for KeyHistoryEntry
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
Auto Trait Implementations§
impl Freeze for KeyHistoryEntry
impl RefUnwindSafe for KeyHistoryEntry
impl Send for KeyHistoryEntry
impl Sync for KeyHistoryEntry
impl Unpin for KeyHistoryEntry
impl UnsafeUnpin for KeyHistoryEntry
impl UnwindSafe for KeyHistoryEntry
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