pub struct RotateKeyResult {
pub agent_id: String,
pub key_id: String,
pub signing_secret: String,
pub rotated_at: String,
}Expand description
Result of rotating an agent’s key.
Fields§
§agent_id: String§key_id: String§signing_secret: String§rotated_at: StringTrait Implementations§
Source§impl Clone for RotateKeyResult
impl Clone for RotateKeyResult
Source§fn clone(&self) -> RotateKeyResult
fn clone(&self) -> RotateKeyResult
Returns a duplicate of the value. Read more
1.0.0 · 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 RotateKeyResult
impl Debug for RotateKeyResult
Source§impl<'de> Deserialize<'de> for RotateKeyResult
impl<'de> Deserialize<'de> for RotateKeyResult
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
Auto Trait Implementations§
impl Freeze for RotateKeyResult
impl RefUnwindSafe for RotateKeyResult
impl Send for RotateKeyResult
impl Sync for RotateKeyResult
impl Unpin for RotateKeyResult
impl UnsafeUnpin for RotateKeyResult
impl UnwindSafe for RotateKeyResult
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