pub struct SSHKey {
pub id: u64,
pub key: String,
pub url: Option<String>,
pub title: Option<String>,
pub verified: Option<bool>,
pub created_at: Option<String>,
pub read_only: Option<bool>,
}
Fields
id: u64
key: String
url: Option<String>
title: Option<String>
verified: Option<bool>
created_at: Option<String>
read_only: Option<bool>
Trait Implementations
Formats the value using the given formatter.
fn eq(&self, __arg_0: &SSHKey) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &SSHKey) -> bool
This method tests for !=
.