[][src]Trait krill::commons::eventsourcing::CommandDetails

pub trait CommandDetails: Display + 'static {
    type Event: Event;
    type StorableDetails: WithStorableDetails;
    fn store(&self) -> Self::StorableDetails;
}

Implement this for an enum with CommandDetails, so you you can reuse the id and version boilerplate from ['SentCommand'].

Associated Types

Loading content...

Required methods

fn store(&self) -> Self::StorableDetails

Loading content...

Implementors

impl CommandDetails for krill::pubd::CmdDet[src]

impl<S: Signer> CommandDetails for krill::daemon::ca::CmdDet<S>[src]

Loading content...