pub type Event = Event;

Aliased Type§

enum Event {
    BatchInterrupted {
        index: u32,
        error: DispatchError,
    },
    BatchCompleted,
    BatchCompletedWithErrors,
    ItemCompleted,
    ItemFailed {
        error: DispatchError,
    },
    DispatchedAs {
        result: Result<(), DispatchError>,
    },
}

Variants§

§

BatchInterrupted

Fields

§index: u32
§

BatchCompleted

§

BatchCompletedWithErrors

§

ItemCompleted

§

ItemFailed

Fields

§

DispatchedAs

Fields