Struct google_oslogin1_beta::SshPublicKey[][src]

pub struct SshPublicKey {
    pub expiration_time_usec: Option<String>,
    pub key: Option<String>,
    pub fingerprint: Option<String>,
}

The SSH public key information associated with a Google account.

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

An expiration time in microseconds since epoch.

Public key text in SSH format, defined by RFC4253 section 6.6.

Output only. The SHA-256 fingerprint of the SSH public key.

Trait Implementations

impl Default for SshPublicKey
[src]

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

impl Clone for SshPublicKey
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SshPublicKey
[src]

Formats the value using the given formatter. Read more

impl RequestValue for SshPublicKey
[src]

impl ResponseResult for SshPublicKey
[src]

Auto Trait Implementations