[][src]Struct acme_lib::order::CertOrder

pub struct CertOrder<P: Persist> { /* fields omitted */ }

Order for an issued certificate that is ready to download.

Methods

impl<P: Persist> CertOrder<P>[src]

pub fn download_and_save_cert(self) -> Result<Certificate>[src]

Request download of the issued certificate.

When downloaded, the certificate and key will be saved in the persistence. They can later be retreived using Account::certificate.

pub fn api_order(&self) -> &ApiOrder[src]

Access the underlying JSON object for debugging.

Auto Trait Implementations

impl<P> Send for CertOrder<P> where
    P: Sync

impl<P> Sync for CertOrder<P> where
    P: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.