pub struct MTLSConfig {
pub cert: Option<String>,
pub key: Option<String>,
pub passphrase: Option<String>,
}Expand description
mTLS configuration
Fields§
§cert: Option<String>§key: Option<String>§passphrase: Option<String>Trait Implementations§
Source§impl Clone for MTLSConfig
impl Clone for MTLSConfig
Source§fn clone(&self) -> MTLSConfig
fn clone(&self) -> MTLSConfig
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 MTLSConfig
impl Debug for MTLSConfig
Source§impl Default for MTLSConfig
impl Default for MTLSConfig
Source§fn default() -> MTLSConfig
fn default() -> MTLSConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MTLSConfig
impl RefUnwindSafe for MTLSConfig
impl Send for MTLSConfig
impl Sync for MTLSConfig
impl Unpin for MTLSConfig
impl UnsafeUnpin for MTLSConfig
impl UnwindSafe for MTLSConfig
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