Struct docker_api_stubs::models::TlsInfo
source · [−]pub struct TlsInfo {
pub cert_issuer_public_key: Option<String>,
pub cert_issuer_subject: Option<String>,
pub trust_root: Option<String>,
}
Expand description
Information about the issuer of leaf TLS certificates and the trusted root CA certificate.
Fields
cert_issuer_public_key: Option<String>
The base64-url-safe-encoded raw public key bytes of the issuer.
cert_issuer_subject: Option<String>
The base64-url-safe-encoded raw subject bytes of the issuer.
trust_root: Option<String>
The root CA certificate(s) that are used to validate leaf TLS certificates.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for TlsInfo
impl<'de> Deserialize<'de> for TlsInfo
sourcefn 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 StructuralPartialEq for TlsInfo
Auto Trait Implementations
impl RefUnwindSafe for TlsInfo
impl Send for TlsInfo
impl Sync for TlsInfo
impl Unpin for TlsInfo
impl UnwindSafe for TlsInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more