pub struct KeyLifecycleState {
pub principal_id: String,
pub key_state: KeyState,
}Expand description
Lifecycle state of one signing key.
Fields§
§principal_id: StringPrincipal that owns this key.
key_state: KeyStateCurrent lifecycle state of the key.
Trait Implementations§
Source§impl Clone for KeyLifecycleState
impl Clone for KeyLifecycleState
Source§fn clone(&self) -> KeyLifecycleState
fn clone(&self) -> KeyLifecycleState
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 KeyLifecycleState
impl Debug for KeyLifecycleState
Source§impl<'de> Deserialize<'de> for KeyLifecycleState
impl<'de> Deserialize<'de> for KeyLifecycleState
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 Ord for KeyLifecycleState
impl Ord for KeyLifecycleState
Source§fn cmp(&self, other: &KeyLifecycleState) -> Ordering
fn cmp(&self, other: &KeyLifecycleState) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for KeyLifecycleState
impl PartialEq for KeyLifecycleState
Source§fn eq(&self, other: &KeyLifecycleState) -> bool
fn eq(&self, other: &KeyLifecycleState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for KeyLifecycleState
impl PartialOrd for KeyLifecycleState
Source§impl Serialize for KeyLifecycleState
impl Serialize for KeyLifecycleState
impl Eq for KeyLifecycleState
impl StructuralPartialEq for KeyLifecycleState
Auto Trait Implementations§
impl Freeze for KeyLifecycleState
impl RefUnwindSafe for KeyLifecycleState
impl Send for KeyLifecycleState
impl Sync for KeyLifecycleState
impl Unpin for KeyLifecycleState
impl UnsafeUnpin for KeyLifecycleState
impl UnwindSafe for KeyLifecycleState
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