pub struct DiscoveredCert {
pub domain: String,
pub cert_path: PathBuf,
pub key_path: PathBuf,
}Expand description
Information about a discovered certificate on disk
Fields§
§domain: StringDomain name (extracted from filename)
cert_path: PathBufPath to the certificate file
key_path: PathBufPath to the private key file
Trait Implementations§
Source§impl Clone for DiscoveredCert
impl Clone for DiscoveredCert
Source§fn clone(&self) -> DiscoveredCert
fn clone(&self) -> DiscoveredCert
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 moreAuto Trait Implementations§
impl Freeze for DiscoveredCert
impl RefUnwindSafe for DiscoveredCert
impl Send for DiscoveredCert
impl Sync for DiscoveredCert
impl Unpin for DiscoveredCert
impl UnsafeUnpin for DiscoveredCert
impl UnwindSafe for DiscoveredCert
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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