pub struct ListSSHKeysResponse {
pub next_page_token: Option<String>,
pub ssh_keys: Option<Vec<SSHKey>>,
}Expand description
Message for response of ListSSHKeys.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- locations ssh keys list projects (response)
Fields§
§next_page_token: Option<String>Token to retrieve the next page of results, or empty if there are no more results in the list.
ssh_keys: Option<Vec<SSHKey>>The SSH keys registered in the project.
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 Serialize for ListSSHKeysResponse
impl Serialize for ListSSHKeysResponse
impl ResponseResult 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