pub struct TlsValidationContextFileTrust {
pub certificate_chain: String,
}
Expand description
An object that represents a Transport Layer Security (TLS) validation context trust for a local file.
Fields§
§certificate_chain: String
The certificate trust chain for a certificate stored on the file system of the virtual node that the proxy is running on.
Trait Implementations§
Source§impl Clone for TlsValidationContextFileTrust
impl Clone for TlsValidationContextFileTrust
Source§fn clone(&self) -> TlsValidationContextFileTrust
fn clone(&self) -> TlsValidationContextFileTrust
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 Default for TlsValidationContextFileTrust
impl Default for TlsValidationContextFileTrust
Source§fn default() -> TlsValidationContextFileTrust
fn default() -> TlsValidationContextFileTrust
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TlsValidationContextFileTrust
impl<'de> Deserialize<'de> for TlsValidationContextFileTrust
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 TlsValidationContextFileTrust
impl PartialEq for TlsValidationContextFileTrust
Source§fn eq(&self, other: &TlsValidationContextFileTrust) -> bool
fn eq(&self, other: &TlsValidationContextFileTrust) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for TlsValidationContextFileTrust
Auto Trait Implementations§
impl Freeze for TlsValidationContextFileTrust
impl RefUnwindSafe for TlsValidationContextFileTrust
impl Send for TlsValidationContextFileTrust
impl Sync for TlsValidationContextFileTrust
impl Unpin for TlsValidationContextFileTrust
impl UnwindSafe for TlsValidationContextFileTrust
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