[][src]Struct krill::commons::api::IssuedCert

pub struct IssuedCert { /* fields omitted */ }

This type defines an issued certificate, including its publication point and resource set. Intended for use in list responses defined in RFC6492, section 3.3.2.

Implementations

impl IssuedCert[src]

pub fn new(
    uri: Rsync,
    limit: RequestResourceLimit,
    resource_set: ResourceSet,
    cert: Cert,
    replaces: Option<ReplacedObject>
) -> Self
[src]

pub fn unpack(self) -> (Rsync, RequestResourceLimit, ResourceSet, Cert)[src]

pub fn uri(&self) -> &Rsync[src]

pub fn limit(&self) -> &RequestResourceLimit[src]

pub fn resource_set(&self) -> &ResourceSet[src]

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

pub fn replaces(&self) -> Option<&ReplacedObject>[src]

Trait Implementations

impl Clone for IssuedCert[src]

impl Debug for IssuedCert[src]

impl Deref for IssuedCert[src]

type Target = Cert

The resulting type after dereferencing.

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

impl Eq for IssuedCert[src]

impl<'_> From<&'_ IssuedCert> for ReplacedObject[src]

impl From<IssuedCert> for RcvdCert[src]

impl PartialEq<IssuedCert> for IssuedCert[src]

impl Serialize for IssuedCert[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, 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.