[][src]Enum krill::commons::api::ParentCaContact

pub enum ParentCaContact {
    Ta(TaCertDetails),
    Embedded,
    Rfc6492(ParentResponse),
}

This type contains the information needed to contact the parent ca for resource provisioning requests (RFC6492).

Variants

Embedded

Implementations

impl ParentCaContact[src]

pub fn for_rfc6492(response: ParentResponse) -> Self[src]

pub fn to_ta_cert(&self) -> &Cert[src]

pub fn is_ta(&self) -> bool[src]

Trait Implementations

impl Clone for ParentCaContact[src]

impl Debug for ParentCaContact[src]

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

impl Display for ParentCaContact[src]

impl Eq for ParentCaContact[src]

impl From<ParentCaContact> for StorableParentContact[src]

impl PartialEq<ParentCaContact> for ParentCaContact[src]

impl Serialize for ParentCaContact[src]

impl StructuralEq for ParentCaContact[src]

impl StructuralPartialEq for ParentCaContact[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.