[][src]Struct acme2::Order

pub struct Order {
    pub status: OrderStatus,
    pub expires: Option<String>,
    pub identifiers: Vec<Identifier>,
    pub not_before: Option<String>,
    pub not_after: Option<String>,
    pub error: Option<AcmeError>,
    // some fields omitted
}

An order represents a subscribers's request for a certificate from the ACME server, and is used to track the progress of that order through to issuance.

This must be created through an OrderBuilder.

Fields

status: OrderStatus

The status of this order.

expires: Option<String>

The timestamp after which the server will consider this order invalid.

identifiers: Vec<Identifier>

An array of identifier objects that the order pertains to.

not_before: Option<String>

The requested value of the notBefore field in the certificate.

not_after: Option<String>

The requested value of the notAfter field in the certificate.

error: Option<AcmeError>

The error that occurred while processing the order, if any.

Implementations

impl Order[src]

pub async fn authorizations(&self) -> Result<Vec<Authorization>, Error>[src]

Retrieve all of the Authorizations needed for this order.

The authorization may already be in a Valid state, if an authorization for this identifier was already completed through a seperate order.

impl Order[src]

pub async fn finalize(&self, csr: CSR) -> Result<Order, Error>[src]

Finalize an order (request the final certificate).

For finalization to complete, the state of the order must be in the OrderStatus::Ready state. You can use Order::wait_ready to wait until this is the case.

In most cases this will not complete immediately. You should always call Order::wait_done after this operation to wait until the ACME server has finished finalization, and the certificate is ready for download.

pub async fn certificate(&self) -> Result<Option<Vec<X509>>, Error>[src]

Download the certificate. The order must be in the OrderStatus::Valid state for this to complete.

pub async fn poll(&self) -> Result<Order, Error>[src]

Update the order to match the current server state.

Most users should use Order::wait_ready or Order::wait_done.

pub async fn wait_ready(self, poll_interval: Duration) -> Result<Order, Error>[src]

Wait for this order to go into a state other than OrderStatus::Pending.

This happens when all crate::Authorizations in this order have been completed (have the crate::AuthorizationStatus::Valid state).

Will complete immediately if the order is already in one of these states.

pub async fn wait_done(self, poll_interval: Duration) -> Result<Order, Error>[src]

Wait for the order to go into the OrderStatus::Valid or OrderStatus::Invalid state.

This will happen after the order has gone into the OrderStatus::Ready state, and the order has been requested to be finalized.

Will complete immediately if the order is already in one of these states.

Trait Implementations

impl Debug for Order[src]

impl<'de> Deserialize<'de> for Order[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<T> WithSubscriber for T[src]