Struct gitlab::types::SshKey [] [src]

pub struct SshKey {
    pub id: SshKeyId,
    pub title: String,
    pub key: String,
    pub created_at: DateTime<UTC>,
    pub can_push: bool,
}

An uploaded SSH key.

Fields

The ID of the SSH key.

The title of the key.

The public half of the SSH key.

When the key was created.

Whether the key may push to repositories or not.

Trait Implementations

impl Debug for SshKey
[src]

Formats the value using the given formatter.

impl Clone for SshKey
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more