pub struct RotationReport {
pub brain: String,
pub multikey: String,
pub key_file: String,
pub previous: Vec<String>,
}Expand description
What dbmd key rotate returns.
Fields§
§brain: StringThe brain id rotated.
multikey: StringThe NEW identity the hub now serves.
key_file: StringWhere the new PKCS#8 secret landed (0600).
previous: Vec<String>Prior identities (newest first) the feed still verifies against.
Trait Implementations§
Source§impl Debug for RotationReport
impl Debug for RotationReport
Auto Trait Implementations§
impl Freeze for RotationReport
impl RefUnwindSafe for RotationReport
impl Send for RotationReport
impl Sync for RotationReport
impl Unpin for RotationReport
impl UnsafeUnpin for RotationReport
impl UnwindSafe for RotationReport
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