pub trait DelegatedAppend: Future<Output = Result<(), AppendError<Self::Invocation>>> {
    type Invocation: Invocation;

    fn allows_short_circuiting(&self) -> bool;
}

Required Associated Types

Required Methods

Implementors