pub struct SshSigningKey {
pub key: String,
pub id: i32,
pub title: String,
pub created_at: String,
}Expand description
SshSigningKey : A public SSH key used to sign Git commits
Fields§
§key: String§id: i32§title: String§created_at: StringImplementations§
Source§impl SshSigningKey
impl SshSigningKey
Trait Implementations§
Source§impl Clone for SshSigningKey
impl Clone for SshSigningKey
Source§fn clone(&self) -> SshSigningKey
fn clone(&self) -> SshSigningKey
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 Debug for SshSigningKey
impl Debug for SshSigningKey
Source§impl Default for SshSigningKey
impl Default for SshSigningKey
Source§fn default() -> SshSigningKey
fn default() -> SshSigningKey
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SshSigningKey
impl<'de> Deserialize<'de> for SshSigningKey
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 SshSigningKey
impl PartialEq for SshSigningKey
Source§impl Serialize for SshSigningKey
impl Serialize for SshSigningKey
impl StructuralPartialEq for SshSigningKey
Auto Trait Implementations§
impl Freeze for SshSigningKey
impl RefUnwindSafe for SshSigningKey
impl Send for SshSigningKey
impl Sync for SshSigningKey
impl Unpin for SshSigningKey
impl UnwindSafe for SshSigningKey
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