pub struct CertAndKeyFilePaths {
pub cert: String,
pub key: String,
}
Expand description
Simple structure that holds file paths to the TLS certificate and key
Fields§
§cert: String
Path to TLS certificate file
key: String
Path to TLS key file
Implementations§
Auto Trait Implementations§
impl Freeze for CertAndKeyFilePaths
impl RefUnwindSafe for CertAndKeyFilePaths
impl Send for CertAndKeyFilePaths
impl Sync for CertAndKeyFilePaths
impl Unpin for CertAndKeyFilePaths
impl UnwindSafe for CertAndKeyFilePaths
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