Home
last modified time | relevance | path

Searched refs:AggregateStoreError (Results 1 – 8 of 8) sorted by relevance

/dports/net/krill/krill-0.9.4/src/commons/eventsourcing/
H A Dstore.rs26 pub type StoreResult<T> = Result<T, AggregateStoreError>;
143 A::Error: From<AggregateStoreError>,
352 A::Error: From<AggregateStoreError>,
543 A::Error: From<AggregateStoreError>,
550 ) -> Result<CommandHistory, AggregateStoreError> { in command_history() argument
622 A::Error: From<AggregateStoreError>,
679 A::Error: From<AggregateStoreError>,
1000 pub enum AggregateStoreError { enum
1021 impl fmt::Display for AggregateStoreError { implementation
1082 impl From<KeyValueError> for AggregateStoreError { implementation
[all …]
H A Dmod.rs196 impl From<AggregateStoreError> for PersonError {
197 fn from(e: AggregateStoreError) -> Self { in from()
/dports/net/krill/krill-0.9.4/src/upgrades/
H A Dmod.rs14 eventsourcing::{AggregateStoreError, CommandKey, KeyStoreKey, KeyValueError, KeyValueStore},
33 AggregateStoreError(AggregateStoreError), enumerator
44 UpgradeError::AggregateStoreError(e) => e.fmt(f), in fmt()
63 impl From<AggregateStoreError> for UpgradeError {
64 fn from(e: AggregateStoreError) -> Self { in from()
65 UpgradeError::AggregateStoreError(e) in from()
/dports/net/krill/krill-0.9.4/src/commons/
H A Derror.rs18 eventsourcing::{AggregateStoreError, KeyValueError},
175 AggregateStoreError(AggregateStoreError), enumerator
332 Error::AggregateStoreError(e) => write!(f, "Persistence error: {}", e), in fmt()
513 impl From<AggregateStoreError> for Error {
514 fn from(e: AggregateStoreError) -> Self { in from()
515 Error::AggregateStoreError(e) in from()
613 …Error::IoError(_) | Error::SignerError(_) | Error::AggregateStoreError(_) | Error::PublishingObjec… in status()
646 Error::AggregateStoreError(e) => ErrorResponse::new("sys-store", &self).with_cause(e), in to_error_response()
969 Error::AggregateStoreError(AggregateStoreError::InitError(ca.clone())), in error_response_json_regression()
/dports/net/krill/krill-0.9.4/doc/development/
H A D04_es_krill.md336 A::Error: From<AggregateStoreError>,
386 pub fn has(&self, id: &Handle) -> Result<bool, AggregateStoreError> { ... }
389 pub fn list(&self) -> Result<Vec<Handle>, AggregateStoreError> { ... }
/dports/net/krill/krill-0.9.4/src/daemon/http/
H A Dserver.rs36 eventsourcing::AggregateStoreError,
1590 Error::AggregateStoreError(AggregateStoreError::UnknownCommand(_, _)) => { in api_ca_command_details()
/dports/net/krill/krill-0.9.4/src/daemon/ca/
H A Dmanager.rs201 self.ca_store.get_latest(&ta_handle).map_err(Error::AggregateStoreError) in get_trust_anchor()
324 self.ca_store.has(handle).map_err(Error::AggregateStoreError) in has_ca()
/dports/net/krill/krill-0.9.4/src/pubd/
H A Drepository.rs959 self.store.has(&self.key).map_err(Error::AggregateStoreError) in initialized()