pub struct GetCertificateAuthorityCsrResponse {
pub csr: Option<String>,
}
Fields§
§csr: Option<String>
The base64 PEM-encoded certificate signing request (CSR) for your private CA certificate.
Trait Implementations§
Source§impl Clone for GetCertificateAuthorityCsrResponse
impl Clone for GetCertificateAuthorityCsrResponse
Source§fn clone(&self) -> GetCertificateAuthorityCsrResponse
fn clone(&self) -> GetCertificateAuthorityCsrResponse
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 GetCertificateAuthorityCsrResponse
impl Default for GetCertificateAuthorityCsrResponse
Source§fn default() -> GetCertificateAuthorityCsrResponse
fn default() -> GetCertificateAuthorityCsrResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetCertificateAuthorityCsrResponse
impl<'de> Deserialize<'de> for GetCertificateAuthorityCsrResponse
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 GetCertificateAuthorityCsrResponse
impl PartialEq for GetCertificateAuthorityCsrResponse
Source§fn eq(&self, other: &GetCertificateAuthorityCsrResponse) -> bool
fn eq(&self, other: &GetCertificateAuthorityCsrResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetCertificateAuthorityCsrResponse
Auto Trait Implementations§
impl Freeze for GetCertificateAuthorityCsrResponse
impl RefUnwindSafe for GetCertificateAuthorityCsrResponse
impl Send for GetCertificateAuthorityCsrResponse
impl Sync for GetCertificateAuthorityCsrResponse
impl Unpin for GetCertificateAuthorityCsrResponse
impl UnwindSafe for GetCertificateAuthorityCsrResponse
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