pub struct PostUsersCreateSshSigningKeyForAuthenticatedUser {
pub title: Option<String>,
pub key: Option<String>,
}Fields§
§title: Option<String>A descriptive name for the new key.
key: Option<String>The public SSH key to add to your GitHub account. For more information, see "Checking for existing SSH keys."
Trait Implementations§
Source§impl Clone for PostUsersCreateSshSigningKeyForAuthenticatedUser
impl Clone for PostUsersCreateSshSigningKeyForAuthenticatedUser
Source§fn clone(&self) -> PostUsersCreateSshSigningKeyForAuthenticatedUser
fn clone(&self) -> PostUsersCreateSshSigningKeyForAuthenticatedUser
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for PostUsersCreateSshSigningKeyForAuthenticatedUser
impl Default for PostUsersCreateSshSigningKeyForAuthenticatedUser
Source§fn default() -> PostUsersCreateSshSigningKeyForAuthenticatedUser
fn default() -> PostUsersCreateSshSigningKeyForAuthenticatedUser
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PostUsersCreateSshSigningKeyForAuthenticatedUser
impl<'de> Deserialize<'de> for PostUsersCreateSshSigningKeyForAuthenticatedUser
Source§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
Source§impl PartialEq for PostUsersCreateSshSigningKeyForAuthenticatedUser
impl PartialEq for PostUsersCreateSshSigningKeyForAuthenticatedUser
Source§fn eq(&self, other: &PostUsersCreateSshSigningKeyForAuthenticatedUser) -> bool
fn eq(&self, other: &PostUsersCreateSshSigningKeyForAuthenticatedUser) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PostUsersCreateSshSigningKeyForAuthenticatedUser
Auto Trait Implementations§
impl Freeze for PostUsersCreateSshSigningKeyForAuthenticatedUser
impl RefUnwindSafe for PostUsersCreateSshSigningKeyForAuthenticatedUser
impl Send for PostUsersCreateSshSigningKeyForAuthenticatedUser
impl Sync for PostUsersCreateSshSigningKeyForAuthenticatedUser
impl Unpin for PostUsersCreateSshSigningKeyForAuthenticatedUser
impl UnwindSafe for PostUsersCreateSshSigningKeyForAuthenticatedUser
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more