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,
}Expand description
An uploaded SSH key.
Fields
id: SshKeyIdThe ID of the SSH key.
title: StringThe title of the key.
key: StringThe public half of the SSH key.
created_at: DateTime<Utc>When the key was created.
can_push: boolWhether the key may push to repositories or not.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for SshKey
impl UnwindSafe for SshKey
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more