pub enum SigningKeyStatus {
Active,
Deprecated,
Revoked,
}Expand description
Lifecycle status of one deployment-owned artifact signing key.
Variants§
Active
Key may sign and verify current releases.
Deprecated
Key verifies already published artifacts during a rotation window.
Revoked
Key is compromised or retired and must reject every artifact.
Trait Implementations§
Source§impl Clone for SigningKeyStatus
impl Clone for SigningKeyStatus
Source§fn clone(&self) -> SigningKeyStatus
fn clone(&self) -> SigningKeyStatus
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 moreimpl Copy for SigningKeyStatus
Source§impl Debug for SigningKeyStatus
impl Debug for SigningKeyStatus
impl Eq for SigningKeyStatus
Source§impl PartialEq for SigningKeyStatus
impl PartialEq for SigningKeyStatus
impl StructuralPartialEq for SigningKeyStatus
Auto Trait Implementations§
impl Freeze for SigningKeyStatus
impl RefUnwindSafe for SigningKeyStatus
impl Send for SigningKeyStatus
impl Sync for SigningKeyStatus
impl Unpin for SigningKeyStatus
impl UnsafeUnpin for SigningKeyStatus
impl UnwindSafe for SigningKeyStatus
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