pub struct RotateSigningKeyResponse {
pub kid: String,
pub public_key_b64: String,
pub previous_kid: String,
pub previous_grace_until: String,
}Expand description
Response body for POST /api/v1/cluster/rotate-signing-key.
Fields§
§kid: StringNew active key id (8 hex chars).
public_key_b64: StringURL-safe no-pad base64 of the new active verifying key.
previous_kid: StringPrevious active kid, now in grace.
previous_grace_until: StringRFC3339 timestamp when the previous key’s grace expires.
Trait Implementations§
Source§impl Clone for RotateSigningKeyResponse
impl Clone for RotateSigningKeyResponse
Source§fn clone(&self) -> RotateSigningKeyResponse
fn clone(&self) -> RotateSigningKeyResponse
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 ComposeSchema for RotateSigningKeyResponse
impl ComposeSchema for RotateSigningKeyResponse
Source§impl Debug for RotateSigningKeyResponse
impl Debug for RotateSigningKeyResponse
Source§impl<'de> Deserialize<'de> for RotateSigningKeyResponse
impl<'de> Deserialize<'de> for RotateSigningKeyResponse
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
Source§impl Serialize for RotateSigningKeyResponse
impl Serialize for RotateSigningKeyResponse
Auto Trait Implementations§
impl Freeze for RotateSigningKeyResponse
impl RefUnwindSafe for RotateSigningKeyResponse
impl Send for RotateSigningKeyResponse
impl Sync for RotateSigningKeyResponse
impl Unpin for RotateSigningKeyResponse
impl UnsafeUnpin for RotateSigningKeyResponse
impl UnwindSafe for RotateSigningKeyResponse
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