pub struct SSLConfig {
pub ssl_key: String,
pub ssl_ca: String,
pub ssl_cert: String,
}Expand description
Stores SSL Config for Kafka
Fields§
§ssl_key: StringPath to the SSL key file
ssl_ca: StringPath to the SSL CA file
ssl_cert: StringPath to the SSL cert file
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SSLConfig
impl RefUnwindSafe for SSLConfig
impl Send for SSLConfig
impl Sync for SSLConfig
impl Unpin for SSLConfig
impl UnwindSafe for SSLConfig
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