[][src]Struct acme2::DirectoryBuilder

pub struct DirectoryBuilder { /* fields omitted */ }

An builder that is used create a Directory.

Implementations

impl DirectoryBuilder[src]

pub fn new(url: String) -> Self[src]

Creates a new builder with the specified directory root URL.

Let's Encrypt: https://acme-v02.api.letsencrypt.org/directory

Let's Encrypt Staging: https://acme-staging-v02.api.letsencrypt.org/directory

pub fn http_client(&mut self, http_client: Client) -> &mut Self[src]

Specify a custom reqwest::Client to use for all outbound HTTP requests to the ACME server.

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

Build a Directory using the given parameters.

If no http client is specified, a default client will be created using the webpki trust roots.

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]