[][src]Struct acme_micro::api::ApiDirectory

pub struct ApiDirectory {
    pub newNonce: String,
    pub newAccount: String,
    pub newOrder: String,
    pub newAuthz: Option<String>,
    pub revokeCert: String,
    pub keyChange: String,
    pub meta: Option<ApiDirectoryMeta>,
}

Fields

newNonce: StringnewAccount: StringnewOrder: StringnewAuthz: Option<String>revokeCert: StringkeyChange: Stringmeta: Option<ApiDirectoryMeta>

Trait Implementations

impl Clone for ApiDirectory[src]

impl Debug for ApiDirectory[src]

impl Default for ApiDirectory[src]

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

impl Eq for ApiDirectory[src]

impl PartialEq<ApiDirectory> for ApiDirectory[src]

impl Serialize for ApiDirectory[src]

impl StructuralEq for ApiDirectory[src]

impl StructuralPartialEq for ApiDirectory[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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Sealed<T> for T where
    T: ?Sized

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.