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

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

id: SshKeyId

The ID of the SSH key.

title: String

The title of the key.

key: String

The public half of the SSH key.

created_at: DateTime<Utc>

When the key was created.

can_push: bool

Whether the key may push to repositories or not.

Trait Implementations

impl Clone for SshKey[src]

impl Debug for SshKey[src]

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

impl Serialize for SshKey[src]

Auto Trait Implementations

impl RefUnwindSafe for SshKey

impl Send for SshKey

impl Sync for SshKey

impl Unpin for SshKey

impl UnwindSafe for SshKey

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.