#[non_exhaustive]pub struct AddPublicKeyResponse {
pub key: String,
/* private fields */
}
Expand description
Response message for AddPublicKey.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.key: String
Key that was added to the environment.
Implementations§
Trait Implementations§
Source§impl Clone for AddPublicKeyResponse
impl Clone for AddPublicKeyResponse
Source§fn clone(&self) -> AddPublicKeyResponse
fn clone(&self) -> AddPublicKeyResponse
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 AddPublicKeyResponse
impl Debug for AddPublicKeyResponse
Source§impl Default for AddPublicKeyResponse
impl Default for AddPublicKeyResponse
Source§fn default() -> AddPublicKeyResponse
fn default() -> AddPublicKeyResponse
Returns the “default value” for a type. Read more
Source§impl Message for AddPublicKeyResponse
impl Message for AddPublicKeyResponse
Source§impl PartialEq for AddPublicKeyResponse
impl PartialEq for AddPublicKeyResponse
impl StructuralPartialEq for AddPublicKeyResponse
Auto Trait Implementations§
impl Freeze for AddPublicKeyResponse
impl RefUnwindSafe for AddPublicKeyResponse
impl Send for AddPublicKeyResponse
impl Sync for AddPublicKeyResponse
impl Unpin for AddPublicKeyResponse
impl UnwindSafe for AddPublicKeyResponse
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