Enum async_acme::acme::Order[][src]

pub enum Order {
    Pending {
        authorizations: Vec<String>,
        finalize: String,
    },
    Ready {
        finalize: String,
    },
    Valid {
        certificate: String,
    },
    Invalid,
}
Expand description

State of an ACME request

Variants

Pending

Auth for authorizations must be completed

Fields of Pending

authorizations: Vec<String>finalize: String
Ready

Auth is done. CSR can be sent (Account::send_csr)

Fields of Ready

finalize: String
Valid

CSR is done. Certificate can be downloaded (Account::obtain_certificate)

Fields of Valid

certificate: String
Invalid

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.