pub struct SigningKey {
pub id: String,
pub project_id: String,
pub kid: String,
pub algorithm: SigningAlgorithm,
pub state: SigningKeyState,
pub ring_revision: i64,
pub signing_epoch: i64,
pub sign_not_before: Option<String>,
pub verify_not_after: Option<String>,
pub public_jwk: Option<PublicJwk>,
}Fields§
§id: String§project_id: String§kid: String§algorithm: SigningAlgorithm§state: SigningKeyState§ring_revision: i64§signing_epoch: i64§sign_not_before: Option<String>§verify_not_after: Option<String>§public_jwk: Option<PublicJwk>Absent until the external signer material has been reconciled.
Trait Implementations§
Source§impl Clone for SigningKey
impl Clone for SigningKey
Source§fn clone(&self) -> SigningKey
fn clone(&self) -> SigningKey
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 SigningKey
impl ComposeSchema for SigningKey
Source§impl Debug for SigningKey
impl Debug for SigningKey
Source§impl<'de> Deserialize<'de> for SigningKey
impl<'de> Deserialize<'de> for SigningKey
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 PartialEq for SigningKey
impl PartialEq for SigningKey
Source§impl Serialize for SigningKey
impl Serialize for SigningKey
impl StructuralPartialEq for SigningKey
Auto Trait Implementations§
impl Freeze for SigningKey
impl RefUnwindSafe for SigningKey
impl Send for SigningKey
impl Sync for SigningKey
impl Unpin for SigningKey
impl UnsafeUnpin for SigningKey
impl UnwindSafe for SigningKey
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