pub struct ListSshKeysResponse {
pub meta: Box<Meta>,
pub ssh_keys: Vec<SshKey>,
}Expand description
ListSshKeysResponse : Response to GET https://api.hetzner.cloud/v1/ssh_keys
Fields§
§meta: Box<Meta>§ssh_keys: Vec<SshKey>Implementations§
Trait Implementations§
Source§impl Clone for ListSshKeysResponse
impl Clone for ListSshKeysResponse
Source§fn clone(&self) -> ListSshKeysResponse
fn clone(&self) -> ListSshKeysResponse
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 ListSshKeysResponse
impl Debug for ListSshKeysResponse
Source§impl Default for ListSshKeysResponse
impl Default for ListSshKeysResponse
Source§fn default() -> ListSshKeysResponse
fn default() -> ListSshKeysResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListSshKeysResponse
impl<'de> Deserialize<'de> for ListSshKeysResponse
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 ListSshKeysResponse
impl PartialEq for ListSshKeysResponse
Source§impl Serialize for ListSshKeysResponse
impl Serialize for ListSshKeysResponse
impl StructuralPartialEq for ListSshKeysResponse
Auto Trait Implementations§
impl Freeze for ListSshKeysResponse
impl RefUnwindSafe for ListSshKeysResponse
impl Send for ListSshKeysResponse
impl Sync for ListSshKeysResponse
impl Unpin for ListSshKeysResponse
impl UnwindSafe for ListSshKeysResponse
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