[][src]Struct acme2_slim::Directory

pub struct Directory { /* fields omitted */ }

Implementations

impl Directory[src]

pub async fn lets_encrypt() -> Result<Directory>[src]

Creates a Directory from LETSENCRYPT_DIRECTORY_URL.

pub async fn from_url<'_>(url: &'_ str) -> Result<Directory>[src]

Creates a Directory from directory URL.

Example directory for testing acme-client crate with staging API:

use acme2_slim::Directory;
let dir = Directory::from_url("https://acme-staging-v02.api.letsencrypt.org/directory").await?;

pub fn account_registration(self) -> AccountRegistration[src]

Consumes directory and creates new AccountRegistration.

AccountRegistration is used to register an account.

use acme2_slim::Directory;

let directory = Directory::lets_encrypt().await?;
let account = directory.account_registration()
                       .email("example@example.org")
                       .register().await?;

pub fn new_account_url(&self) -> String[src]

pub fn new_order_url(&self) -> String[src]

pub fn new_noince_url(&self) -> String[src]

pub fn revoke_cert_url(&self) -> String[src]

Trait Implementations

impl Clone for Directory[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> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,