pub struct TlsConfig {
pub verify: bool,
pub ca_bundle: Option<PathBuf>,
}Expand description
TLS configuration for daemon communication.
Fields§
§verify: boolWhether to verify TLS certificates (default: true).
ca_bundle: Option<PathBuf>Path to CA bundle file for TLS verification.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TlsConfig
impl RefUnwindSafe for TlsConfig
impl Send for TlsConfig
impl Sync for TlsConfig
impl Unpin for TlsConfig
impl UnsafeUnpin 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