[][src]Enum krill::commons::error::Error

pub enum Error {
    IoError(Error),
    AggregateStoreError(AggregateStoreError),
    SignerError(String),
    HttpsSetup(String),
    HttpClientError(Error),
    JsonError(Error),
    ApiUnknownMethod,
    ApiUnknownResource,
    ApiInvalidHandle,
    ApiInvalidSeconds,
    PostTooBig,
    PostCannotRead,
    RepoNotSet,
    PublisherUnknown(PublisherHandle),
    PublisherUriOutsideBase(StringString),
    PublisherBaseUriNoSlash(String),
    PublisherDuplicate(PublisherHandle),
    PublisherNoEmbeddedRepo,
    Rfc8181Validation(ValidationError),
    Rfc8181Decode(String),
    Rfc8181MessageError(MessageError),
    Rfc8181Delta(PublicationDeltaError),
    CaDuplicate(Handle),
    CaUnknown(Handle),
    CaRepoInUse(Handle),
    CaRepoIssue(HandleString),
    CaRepoResponseInvalidXml(HandleString),
    CaRepoResponseWrongXml(Handle),
    CaParentDuplicate(HandleParentHandle),
    CaParentUnknown(HandleParentHandle),
    CaParentIssue(HandleParentHandleString),
    CaParentResponseInvalidXml(HandleString),
    CaParentResponseWrongXml(Handle),
    CaParentAddNotResponsive(HandleParentHandle),
    Rfc6492(Error),
    Rfc6492InvalidCsrSent(String),
    Rfc6492SignatureInvalid,
    CaChildDuplicate(HandleChildHandle),
    CaChildUnknown(HandleChildHandle),
    CaChildMustHaveResources(HandleChildHandle),
    CaChildExtraResources(HandleChildHandle),
    CaChildUnauthorized(HandleChildHandle),
    CaChildUpdateOneThing(HandleChildHandle),
    CaAuthorizationUnknown(HandleRouteAuthorization),
    CaAuthorizationDuplicate(HandleRouteAuthorization),
    CaAuthorizationRedundant(HandleRouteAuthorization),
    CaAuthorizationIncludes(HandleRouteAuthorization),
    CaAuthorizationInvalidMaxlength(HandleRouteAuthorization),
    CaAuthorizationNotEntitled(HandleRouteAuthorization),
    KeyUseAttemptReuse,
    KeyUseNoNewKey,
    KeyUseNoCurrentKey,
    KeyUseNoOldKey,
    KeyUseNoIssuedCert,
    KeyUseNoMatch(KeyIdentifier),
    ResourceClassUnknown(ResourceClassName),
    ResourceSetError(ResourceSetError),
    MissingResources,
    TaNotAllowed,
    TaNameReserved,
    TaAlreadyInitialised,
    Custom(String),
}

Variants

IoError(Error)
AggregateStoreError(AggregateStoreError)
SignerError(String)
HttpsSetup(String)
HttpClientError(Error)
JsonError(Error)
ApiUnknownMethod
ApiUnknownResource
ApiInvalidHandle
ApiInvalidSeconds
PostTooBig
PostCannotRead
RepoNotSet
PublisherUnknown(PublisherHandle)
PublisherUriOutsideBase(StringString)
PublisherBaseUriNoSlash(String)
PublisherDuplicate(PublisherHandle)
PublisherNoEmbeddedRepo
Rfc8181Validation(ValidationError)
Rfc8181Decode(String)
Rfc8181MessageError(MessageError)
Rfc8181Delta(PublicationDeltaError)
CaDuplicate(Handle)
CaUnknown(Handle)
CaRepoInUse(Handle)
CaRepoIssue(HandleString)
CaRepoResponseInvalidXml(HandleString)
CaRepoResponseWrongXml(Handle)
CaParentDuplicate(HandleParentHandle)
CaParentUnknown(HandleParentHandle)
CaParentIssue(HandleParentHandleString)
CaParentResponseInvalidXml(HandleString)
CaParentResponseWrongXml(Handle)
CaParentAddNotResponsive(HandleParentHandle)
Rfc6492(Error)
Rfc6492InvalidCsrSent(String)
Rfc6492SignatureInvalid
CaChildDuplicate(HandleChildHandle)
CaChildUnknown(HandleChildHandle)
CaChildMustHaveResources(HandleChildHandle)
CaChildExtraResources(HandleChildHandle)
CaChildUnauthorized(HandleChildHandle)
CaChildUpdateOneThing(HandleChildHandle)
CaAuthorizationUnknown(HandleRouteAuthorization)
CaAuthorizationDuplicate(HandleRouteAuthorization)
CaAuthorizationRedundant(HandleRouteAuthorization)
CaAuthorizationIncludes(HandleRouteAuthorization)
CaAuthorizationInvalidMaxlength(HandleRouteAuthorization)
CaAuthorizationNotEntitled(HandleRouteAuthorization)
KeyUseAttemptReuse
KeyUseNoNewKey
KeyUseNoCurrentKey
KeyUseNoOldKey
KeyUseNoIssuedCert
KeyUseNoMatch(KeyIdentifier)
ResourceClassUnknown(ResourceClassName)
ResourceSetError(ResourceSetError)
MissingResources
TaNotAllowed
TaNameReserved
TaAlreadyInitialised
Custom(String)

Implementations

impl Error[src]

pub fn signer(e: impl Display) -> Self[src]

pub fn invalid_csr(msg: &str) -> Self[src]

pub fn publishing_outside_jail(uri: &Rsync, jail: &Rsync) -> Self[src]

pub fn custom(msg: impl Display) -> Self[src]

impl Error[src]

Translate an error to an HTTP Status Code

Trait Implementations

impl Debug for Error[src]

impl Display for Error[src]

impl Error for Error[src]

impl From<AggregateStoreError> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for RoaCleanupError[src]

impl From<MessageError> for Error[src]

impl From<ResourceSetError> for Error[src]

impl From<SignerError> for Error[src]

Auto Trait Implementations

impl !RefUnwindSafe for Error

impl Send for Error

impl Sync for Error

impl Unpin for Error

impl !UnwindSafe for Error

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