Struct google_gmail1::SmimeInfo [] [src]

pub struct SmimeInfo {
    pub pem: Option<String>,
    pub expiration: Option<String>,
    pub encrypted_key_password: Option<String>,
    pub issuer_cn: Option<String>,
    pub id: Option<String>,
    pub pkcs12: Option<String>,
    pub is_default: Option<bool>,
}

An S/MIME email config.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

PEM formatted X509 concatenated certificate string (standard base64 encoding). Format used for returning key, which includes public key as well as certificate chain (not private key).

When the certificate expires (in milliseconds since epoch).

Encrypted key password, when key is encrypted.

The S/MIME certificate issuer's common name.

The immutable ID for the SmimeInfo.

PKCS#12 format containing a single private/public key pair and certificate chain. This format is only accepted from client for creating a new SmimeInfo and is never returned, because the private key is not intended to be exported. PKCS#12 may be encrypted, in which case encryptedKeyPassword should be set appropriately.

Whether this SmimeInfo is the default one for this user's send-as address.

Trait Implementations

impl Default for SmimeInfo
[src]

[src]

Returns the "default value" for a type. Read more

impl Clone for SmimeInfo
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SmimeInfo
[src]

[src]

Formats the value using the given formatter.

impl RequestValue for SmimeInfo
[src]

impl ResponseResult for SmimeInfo
[src]