[][src]Struct acme_client::Account

pub struct Account { /* fields omitted */ }

Registered account object.

Every operation requires a registered account. To register an Account you can use Directory::register_account method.

See AccountRegistration helper for more details.

Methods

impl Account
[src]

Creates a new identifier authorization object for domain

Creates a new CertificateSigner helper to sign a certificate for list of domains.

domains must be list of the domain names you want to sign a certificate for. Currently there is no way to retrieve subject alt names from a X509Req.

You can additionally use your own private key and CSR. See CertificateSigner for details.

Revokes a signed certificate from pem formatted file

Revokes a signed certificate

Writes account private key to a writer

Saves account private key to a file

Returns a reference to account private key

Returns a reference to directory used to create account

Auto Trait Implementations

impl Send for Account

impl Sync for Account

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Typeable for T where
    T: Any

Get the TypeId of this object.