pub struct CertConfig {
pub domain: String,
pub organization: String,
pub country: String,
pub pfx_pass: String,
}Fields§
§domain: StringDomain certs are being generated for
organization: StringOrganization entry for cert gen
country: StringCountry entry for cert gen
pfx_pass: StringPFX password
Trait Implementations§
Source§impl Debug for CertConfig
impl Debug for CertConfig
Source§impl Default for CertConfig
impl Default for CertConfig
Source§fn default() -> CertConfig
fn default() -> CertConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CertConfig
impl<'de> Deserialize<'de> for CertConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CertConfig
impl RefUnwindSafe for CertConfig
impl Send for CertConfig
impl Sync for CertConfig
impl Unpin for CertConfig
impl UnwindSafe for CertConfig
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