pub struct TlsCommonResponseAllOf {
pub tls_ca_cert: Option<String>,
pub tls_client_cert: Option<String>,
pub tls_client_key: Option<String>,
pub tls_cert_hostname: Option<String>,
}
Fields§
§tls_ca_cert: Option<String>
A secure certificate to authenticate a server with. Must be in PEM format.
tls_client_cert: Option<String>
The client certificate used to make authenticated requests. Must be in PEM format.
tls_client_key: Option<String>
The client private key used to make authenticated requests. Must be in PEM format.
tls_cert_hostname: Option<String>
The hostname used to verify a server’s certificate. It can either be the Common Name (CN) or a Subject Alternative Name (SAN).
Implementations§
Source§impl TlsCommonResponseAllOf
impl TlsCommonResponseAllOf
pub fn new() -> TlsCommonResponseAllOf
Trait Implementations§
Source§impl Clone for TlsCommonResponseAllOf
impl Clone for TlsCommonResponseAllOf
Source§fn clone(&self) -> TlsCommonResponseAllOf
fn clone(&self) -> TlsCommonResponseAllOf
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 TlsCommonResponseAllOf
impl Debug for TlsCommonResponseAllOf
Source§impl Default for TlsCommonResponseAllOf
impl Default for TlsCommonResponseAllOf
Source§fn default() -> TlsCommonResponseAllOf
fn default() -> TlsCommonResponseAllOf
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TlsCommonResponseAllOf
impl<'de> Deserialize<'de> for TlsCommonResponseAllOf
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 TlsCommonResponseAllOf
impl PartialEq for TlsCommonResponseAllOf
Source§impl Serialize for TlsCommonResponseAllOf
impl Serialize for TlsCommonResponseAllOf
impl StructuralPartialEq for TlsCommonResponseAllOf
Auto Trait Implementations§
impl Freeze for TlsCommonResponseAllOf
impl RefUnwindSafe for TlsCommonResponseAllOf
impl Send for TlsCommonResponseAllOf
impl Sync for TlsCommonResponseAllOf
impl Unpin for TlsCommonResponseAllOf
impl UnwindSafe for TlsCommonResponseAllOf
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