[][src]Enum eventmill::dispatch::CoreError

pub enum CoreError<R, W, H> where
    R: Debug + Display,
    W: Debug + Display,
    H: Debug + Display
{ ReplayAggregateFailed(R), AppendEventsFailed(W), ReadEventsFailed(R), HandleCommandFailed(H), GenerationConflict { assumed: Generation, actual: Generation, }, }

Variants

ReplayAggregateFailed(R)
AppendEventsFailed(W)
ReadEventsFailed(R)
HandleCommandFailed(H)
GenerationConflict

Fields of GenerationConflict

assumed: Generationactual: Generation

Trait Implementations

impl<R: Debug, W: Debug, H: Debug> Debug for CoreError<R, W, H> where
    R: Debug + Display,
    W: Debug + Display,
    H: Debug + Display
[src]

impl<'de, R, W, H> Deserialize<'de> for CoreError<R, W, H> where
    R: Debug + Display,
    W: Debug + Display,
    H: Debug + Display,
    R: Deserialize<'de>,
    W: Deserialize<'de>,
    H: Deserialize<'de>, 
[src]

impl<R, W, H> Display for CoreError<R, W, H> where
    R: Debug + Display,
    W: Debug + Display,
    H: Debug + Display
[src]

impl<R, W, H> Error for CoreError<R, W, H> where
    R: Debug + Display,
    W: Debug + Display,
    H: Debug + Display
[src]

impl<R: PartialEq, W: PartialEq, H: PartialEq> PartialEq<CoreError<R, W, H>> for CoreError<R, W, H> where
    R: Debug + Display,
    W: Debug + Display,
    H: Debug + Display
[src]

impl<R, W, H> Serialize for CoreError<R, W, H> where
    R: Debug + Display,
    W: Debug + Display,
    H: Debug + Display,
    R: Serialize,
    W: Serialize,
    H: Serialize
[src]

impl<R, W, H> StructuralPartialEq for CoreError<R, W, H> where
    R: Debug + Display,
    W: Debug + Display,
    H: Debug + Display
[src]

Auto Trait Implementations

impl<R, W, H> RefUnwindSafe for CoreError<R, W, H> where
    H: RefUnwindSafe,
    R: RefUnwindSafe,
    W: RefUnwindSafe

impl<R, W, H> Send for CoreError<R, W, H> where
    H: Send,
    R: Send,
    W: Send

impl<R, W, H> Sync for CoreError<R, W, H> where
    H: Sync,
    R: Sync,
    W: Sync

impl<R, W, H> Unpin for CoreError<R, W, H> where
    H: Unpin,
    R: Unpin,
    W: Unpin

impl<R, W, H> UnwindSafe for CoreError<R, W, H> where
    H: UnwindSafe,
    R: UnwindSafe,
    W: UnwindSafe

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