[][src]Struct bollard_stubs::models::TlsInfo

pub struct TlsInfo {
    pub trust_root: Option<String>,
    pub cert_issuer_subject: Option<String>,
    pub cert_issuer_public_key: Option<String>,
}

Information about the issuer of leaf TLS certificates and the trusted root CA certificate

Fields

trust_root: Option<String>

The root CA certificate(s) that are used to validate leaf TLS certificates

cert_issuer_subject: Option<String>

The base64-url-safe-encoded raw subject bytes of the issuer

cert_issuer_public_key: Option<String>

The base64-url-safe-encoded raw public key bytes of the issuer

Trait Implementations

impl Clone for TlsInfo[src]

impl Debug for TlsInfo[src]

impl Default for TlsInfo[src]

impl<'de> Deserialize<'de> for TlsInfo[src]

impl PartialEq<TlsInfo> for TlsInfo[src]

impl Serialize for TlsInfo[src]

impl StructuralPartialEq for TlsInfo[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.