pub struct KeyRotationStatement {
pub version: i32,
pub old_id: String,
pub old_pub_key: HybridPublicKey,
pub new_id: String,
pub new_pub_key: HybridPublicKey,
pub rotated_at: i64,
pub reason: String,
pub signature_old: HybridSignature,
pub signature_new: HybridSignature,
}Expand description
Signed continuity statement from an old root key to a new root key.
Fields§
§version: i32§old_id: String§old_pub_key: HybridPublicKey§new_id: String§new_pub_key: HybridPublicKey§rotated_at: i64§reason: String§signature_old: HybridSignature§signature_new: HybridSignatureTrait Implementations§
Source§impl Clone for KeyRotationStatement
impl Clone for KeyRotationStatement
Source§fn clone(&self) -> KeyRotationStatement
fn clone(&self) -> KeyRotationStatement
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 KeyRotationStatement
impl Debug for KeyRotationStatement
Source§impl<'de> Deserialize<'de> for KeyRotationStatement
impl<'de> Deserialize<'de> for KeyRotationStatement
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 KeyRotationStatement
impl RefUnwindSafe for KeyRotationStatement
impl Send for KeyRotationStatement
impl Sync for KeyRotationStatement
impl Unpin for KeyRotationStatement
impl UnsafeUnpin for KeyRotationStatement
impl UnwindSafe for KeyRotationStatement
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