[][src]Struct acme2::OrderBuilder

pub struct OrderBuilder { /* fields omitted */ }

A builder used to create a new Order.

Implementations

impl OrderBuilder[src]

pub fn new(account: Arc<Account>) -> Self[src]

pub fn set_identifiers(&mut self, identifiers: Vec<Identifier>) -> &mut Self[src]

Set the identifiers for an order.

In most cases, you can use OrderBuilder::add_dns_identifier

pub fn add_dns_identifier(&mut self, fqdn: String) -> &mut Self[src]

Add a type dns identifier to the list of identifiers for this order.

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

This will request a new Order from the ACME server.

Trait Implementations

impl Debug for OrderBuilder[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> 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]