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

pub enum StorableCaCommand {
    MakeTrustAnchor,
    ChildAdd(ChildHandleOption<String>, ResourceSet),
    ChildUpdateResources(ChildHandleResourceSet),
    ChildUpdateId(ChildHandleString),
    ChildCertify(ChildHandleResourceClassNameRequestResourceLimitKeyIdentifier),
    ChildRevokeKey(ChildHandleRevocationRequest),
    ChildRemove(ChildHandle),
    GenerateNewIdKey,
    AddParent(ParentHandleStorableParentContact),
    UpdateParentContact(ParentHandleStorableParentContact),
    RemoveParent(ParentHandle),
    UpdateResourceClasses(ParentHandleBTreeMap<ResourceClassName, ResourceSet>),
    UpdateRcvdCert(ResourceClassNameResourceSet),
    KeyRollInitiate(i64),
    KeyRollActivate(i64),
    KeyRollFinish(ResourceClassName),
    RoaDefinitionUpdates(RoaDefinitionUpdates),
    Republish,
    RepoUpdate(Option<ServiceUri>),
    RepoRemoveOld,
}

Variants

MakeTrustAnchor
ChildUpdateResources(ChildHandleResourceSet)
ChildUpdateId(ChildHandleString)
ChildRevokeKey(ChildHandleRevocationRequest)
ChildRemove(ChildHandle)
GenerateNewIdKey
UpdateParentContact(ParentHandleStorableParentContact)
RemoveParent(ParentHandle)
UpdateRcvdCert(ResourceClassNameResourceSet)
KeyRollInitiate(i64)
KeyRollActivate(i64)
KeyRollFinish(ResourceClassName)
RoaDefinitionUpdates(RoaDefinitionUpdates)
Republish
RepoUpdate(Option<ServiceUri>)
RepoRemoveOld

Trait Implementations

impl Clone for StorableCaCommand[src]

impl Debug for StorableCaCommand[src]

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

impl Display for StorableCaCommand[src]

impl Eq for StorableCaCommand[src]

impl<S: Signer> From<CmdDet<S>> for StorableCaCommand[src]

impl PartialEq<StorableCaCommand> for StorableCaCommand[src]

impl Serialize for StorableCaCommand[src]

impl StructuralEq for StorableCaCommand[src]

impl StructuralPartialEq for StorableCaCommand[src]

impl WithStorableDetails for StorableCaCommand[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.