Struct github_rs::github::GPGKey [] [src]

pub struct GPGKey {
    pub id: u64,
    pub primary_key_id: Option<u64>,
    pub key_id: String,
    pub public_key: String,
    pub emails: Vec<Email>,
    pub subkeys: Option<Vec<GPGKey>>,
    pub can_sign: bool,
    pub can_encrypt_comms: bool,
    pub can_encrypt_storage: bool,
    pub can_certify: bool,
    pub created_at: String,
    pub expires_at: Option<String>,
}

Fields

Trait Implementations

impl Debug for GPGKey
[src]

Formats the value using the given formatter.

impl PartialEq for GPGKey
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.