pub struct KmsConfigSummary {
pub backend: KmsBackendKind,
pub default_key_id: Option<String>,
pub timeout_seconds: Option<u64>,
pub retry_attempts: Option<u32>,
pub cache: KmsCacheSummary,
pub endpoint: Option<String>,
pub auth_method: Option<String>,
pub credentials_configured: Option<bool>,
pub tls_verification_disabled: Option<bool>,
}Expand description
Non-secret KMS configuration summary returned by RustFS.
Fields§
§backend: KmsBackendKind§default_key_id: Option<String>§timeout_seconds: Option<u64>§retry_attempts: Option<u32>§cache: KmsCacheSummary§endpoint: Option<String>§auth_method: Option<String>§credentials_configured: Option<bool>§tls_verification_disabled: Option<bool>Trait Implementations§
Source§impl Clone for KmsConfigSummary
impl Clone for KmsConfigSummary
Source§fn clone(&self) -> KmsConfigSummary
fn clone(&self) -> KmsConfigSummary
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 KmsConfigSummary
impl Debug for KmsConfigSummary
Source§impl<'de> Deserialize<'de> for KmsConfigSummary
impl<'de> Deserialize<'de> for KmsConfigSummary
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
impl Eq for KmsConfigSummary
Source§impl PartialEq for KmsConfigSummary
impl PartialEq for KmsConfigSummary
Source§impl Serialize for KmsConfigSummary
impl Serialize for KmsConfigSummary
impl StructuralPartialEq for KmsConfigSummary
Auto Trait Implementations§
impl Freeze for KmsConfigSummary
impl RefUnwindSafe for KmsConfigSummary
impl Send for KmsConfigSummary
impl Sync for KmsConfigSummary
impl Unpin for KmsConfigSummary
impl UnsafeUnpin for KmsConfigSummary
impl UnwindSafe for KmsConfigSummary
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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