pub struct TlsConfig {
pub ca_cert: Vec<u8>,
pub client_cert: Vec<u8>,
pub client_key: Vec<u8>,
pub crl: Vec<u8>,
}Expand description
Key and certificate data for TLS authentication.
Fields§
§ca_cert: Vec<u8>§client_cert: Vec<u8>§client_key: Vec<u8>§crl: Vec<u8>Auto Trait Implementations§
impl Freeze for TlsConfig
impl RefUnwindSafe for TlsConfig
impl Send for TlsConfig
impl Sync for TlsConfig
impl Unpin for TlsConfig
impl UnwindSafe for TlsConfig
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