pub struct RotateEncryptionKeyResponse {
pub rotated: usize,
pub skipped: usize,
pub namespaces: Vec<String>,
}Expand description
Response from POST /v1/admin/encryption/rotate-key (SEC-3).
Fields§
§rotated: usize§skipped: usize§namespaces: Vec<String>Trait Implementations§
Source§impl Clone for RotateEncryptionKeyResponse
impl Clone for RotateEncryptionKeyResponse
Source§fn clone(&self) -> RotateEncryptionKeyResponse
fn clone(&self) -> RotateEncryptionKeyResponse
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 RotateEncryptionKeyResponse
impl Debug for RotateEncryptionKeyResponse
Source§impl<'de> Deserialize<'de> for RotateEncryptionKeyResponse
impl<'de> Deserialize<'de> for RotateEncryptionKeyResponse
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 RotateEncryptionKeyResponse
impl RefUnwindSafe for RotateEncryptionKeyResponse
impl Send for RotateEncryptionKeyResponse
impl Sync for RotateEncryptionKeyResponse
impl Unpin for RotateEncryptionKeyResponse
impl UnsafeUnpin for RotateEncryptionKeyResponse
impl UnwindSafe for RotateEncryptionKeyResponse
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