pub struct UpdatePublicKeyRequest {
pub id: String,
pub if_match: Option<String>,
pub public_key_config: PublicKeyConfig,
}
Fields§
§id: String
ID of the public key to be updated.
if_match: Option<String>
The value of the ETag
header that you received when retrieving the public key to update. For example: E2QWRUHAPOMQZL
.
public_key_config: PublicKeyConfig
Request to update public key information.
Trait Implementations§
Source§impl Clone for UpdatePublicKeyRequest
impl Clone for UpdatePublicKeyRequest
Source§fn clone(&self) -> UpdatePublicKeyRequest
fn clone(&self) -> UpdatePublicKeyRequest
Returns a copy 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 UpdatePublicKeyRequest
impl Debug for UpdatePublicKeyRequest
Source§impl Default for UpdatePublicKeyRequest
impl Default for UpdatePublicKeyRequest
Source§fn default() -> UpdatePublicKeyRequest
fn default() -> UpdatePublicKeyRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdatePublicKeyRequest
impl PartialEq for UpdatePublicKeyRequest
impl StructuralPartialEq for UpdatePublicKeyRequest
Auto Trait Implementations§
impl Freeze for UpdatePublicKeyRequest
impl RefUnwindSafe for UpdatePublicKeyRequest
impl Send for UpdatePublicKeyRequest
impl Sync for UpdatePublicKeyRequest
impl Unpin for UpdatePublicKeyRequest
impl UnwindSafe for UpdatePublicKeyRequest
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