[][src]Struct em_client::models::CertificateConfig

pub struct CertificateConfig {
    pub issuer: Option<String>,
    pub subject: Option<String>,
    pub alt_names: Option<Vec<String>>,
    pub key_type: Option<String>,
    pub key_param: Option<Value>,
    pub key_path: Option<String>,
    pub cert_path: Option<String>,
    pub chain_path: Option<String>,
}

Fields

issuer: Option<String>

Certificate issuance strategy

subject: Option<String>

Certificate subject common name, typically a DNS name

alt_names: Option<Vec<String>>

Subject alternate names to include in the certificate (e.g. DNS:example.com)

key_type: Option<String>

Type of key to generate

key_param: Option<Value>

Key parameters. Currently must be an instance of RsaKeyParam, but other types may be supported in the future.

key_path: Option<String>

Path to expose the key in the application filesystem

cert_path: Option<String>

Path to expose the certificate in the application filesystem

chain_path: Option<String>

Path to expose the complete certificate chain in the application filesystem

Implementations

impl CertificateConfig[src]

Trait Implementations

impl Clone for CertificateConfig[src]

impl Debug for CertificateConfig[src]

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

impl PartialEq<CertificateConfig> for CertificateConfig[src]

impl Serialize for CertificateConfig[src]

impl StructuralPartialEq for CertificateConfig[src]

Auto Trait Implementations

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.

impl<T> Typeable for T where
    T: Any