pub struct PatchedCertificateKeyPairRequest {
pub name: Option<String>,
pub certificate_data: Option<String>,
pub key_data: Option<String>,
}
Expand description
PatchedCertificateKeyPairRequest : CertificateKeyPair Serializer
Fields§
§name: Option<String>
§certificate_data: Option<String>
PEM-encoded Certificate data
key_data: Option<String>
Optional Private Key. If this is set, you can use this keypair for encryption.
Implementations§
Source§impl PatchedCertificateKeyPairRequest
impl PatchedCertificateKeyPairRequest
Sourcepub fn new() -> PatchedCertificateKeyPairRequest
pub fn new() -> PatchedCertificateKeyPairRequest
CertificateKeyPair Serializer
Trait Implementations§
Source§impl Clone for PatchedCertificateKeyPairRequest
impl Clone for PatchedCertificateKeyPairRequest
Source§fn clone(&self) -> PatchedCertificateKeyPairRequest
fn clone(&self) -> PatchedCertificateKeyPairRequest
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 Default for PatchedCertificateKeyPairRequest
impl Default for PatchedCertificateKeyPairRequest
Source§fn default() -> PatchedCertificateKeyPairRequest
fn default() -> PatchedCertificateKeyPairRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchedCertificateKeyPairRequest
impl<'de> Deserialize<'de> for PatchedCertificateKeyPairRequest
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 PatchedCertificateKeyPairRequest
impl PartialEq for PatchedCertificateKeyPairRequest
Source§fn eq(&self, other: &PatchedCertificateKeyPairRequest) -> bool
fn eq(&self, other: &PatchedCertificateKeyPairRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PatchedCertificateKeyPairRequest
Auto Trait Implementations§
impl Freeze for PatchedCertificateKeyPairRequest
impl RefUnwindSafe for PatchedCertificateKeyPairRequest
impl Send for PatchedCertificateKeyPairRequest
impl Sync for PatchedCertificateKeyPairRequest
impl Unpin for PatchedCertificateKeyPairRequest
impl UnwindSafe for PatchedCertificateKeyPairRequest
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