pub struct AcmeAccount {
pub email: String,
pub private_key: String,
pub account_url: Option<String>,
}Expand description
ACME account information
Fields§
§email: StringAccount email
private_key: StringAccount private key (PEM format)
account_url: Option<String>Account URL (from ACME server)
Implementations§
Trait Implementations§
Source§impl Clone for AcmeAccount
impl Clone for AcmeAccount
Source§fn clone(&self) -> AcmeAccount
fn clone(&self) -> AcmeAccount
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 moreSource§impl Debug for AcmeAccount
impl Debug for AcmeAccount
Source§impl<'de> Deserialize<'de> for AcmeAccount
impl<'de> Deserialize<'de> for AcmeAccount
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
Source§impl PartialEq for AcmeAccount
impl PartialEq for AcmeAccount
Source§impl Serialize for AcmeAccount
impl Serialize for AcmeAccount
impl StructuralPartialEq for AcmeAccount
Auto Trait Implementations§
impl Freeze for AcmeAccount
impl RefUnwindSafe for AcmeAccount
impl Send for AcmeAccount
impl Sync for AcmeAccount
impl Unpin for AcmeAccount
impl UnsafeUnpin for AcmeAccount
impl UnwindSafe for AcmeAccount
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