[][src]Struct krill::daemon::ca::CsrInfo

pub struct CsrInfo { /* fields omitted */ }

Implementations

impl CsrInfo[src]

pub fn new(
    ca_repository: CaRepository,
    rpki_manifest: RpkiManifest,
    rpki_notify: Option<RpkiNotify>,
    key: PublicKey
) -> Self
[src]

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

pub fn unpack(
    self
) -> (CaRepository, RpkiManifest, Option<RpkiNotify>, PublicKey)
[src]

pub fn key_id(&self) -> KeyIdentifier[src]

Trait Implementations

impl<'_> From<&'_ Cert> for CsrInfo[src]

impl<'_> TryFrom<&'_ Csr> for CsrInfo[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for CsrInfo

impl Send for CsrInfo

impl Sync for CsrInfo

impl Unpin for CsrInfo

impl UnwindSafe for CsrInfo

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, 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.