pub struct SshPublicKey {
pub ssh_public_key_id: String,
pub user_name: String,
pub ssh_public_key_body: String,
pub status: String,
pub upload_date: DateTime<Utc>,
pub fingerprint: String,
}Fields§
§ssh_public_key_id: String§user_name: String§ssh_public_key_body: String§status: String§upload_date: DateTime<Utc>§fingerprint: StringTrait Implementations§
Source§impl Clone for SshPublicKey
impl Clone for SshPublicKey
Source§fn clone(&self) -> SshPublicKey
fn clone(&self) -> SshPublicKey
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 moreAuto Trait Implementations§
impl Freeze for SshPublicKey
impl RefUnwindSafe for SshPublicKey
impl Send for SshPublicKey
impl Sync for SshPublicKey
impl Unpin for SshPublicKey
impl UnsafeUnpin for SshPublicKey
impl UnwindSafe for SshPublicKey
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