pub struct MtlsClientConfig {
pub cert_path: PathBuf,
pub key_path: PathBuf,
pub ca_cert_path: PathBuf,
}Expand description
mTLS configuration for connecting to gateway
Fields§
§cert_path: PathBuf§key_path: PathBuf§ca_cert_path: PathBufTrait Implementations§
Source§impl Clone for MtlsClientConfig
impl Clone for MtlsClientConfig
Source§fn clone(&self) -> MtlsClientConfig
fn clone(&self) -> MtlsClientConfig
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 moreAuto Trait Implementations§
impl Freeze for MtlsClientConfig
impl RefUnwindSafe for MtlsClientConfig
impl Send for MtlsClientConfig
impl Sync for MtlsClientConfig
impl Unpin for MtlsClientConfig
impl UnsafeUnpin for MtlsClientConfig
impl UnwindSafe for MtlsClientConfig
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