pub struct SSHKeyRequest {
pub ssh_public_key: String,
}Expand description
Request body for adding an SSH key to an instance.
Fields§
§ssh_public_key: StringSSH public key to add.
Trait Implementations§
Source§impl Clone for SSHKeyRequest
impl Clone for SSHKeyRequest
Source§fn clone(&self) -> SSHKeyRequest
fn clone(&self) -> SSHKeyRequest
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 SSHKeyRequest
impl Debug for SSHKeyRequest
Source§impl Default for SSHKeyRequest
impl Default for SSHKeyRequest
Source§fn default() -> SSHKeyRequest
fn default() -> SSHKeyRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SSHKeyRequest
impl RefUnwindSafe for SSHKeyRequest
impl Send for SSHKeyRequest
impl Sync for SSHKeyRequest
impl Unpin for SSHKeyRequest
impl UnsafeUnpin for SSHKeyRequest
impl UnwindSafe for SSHKeyRequest
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