Trait Submitter

Source
pub unsafe trait Submitter {
    type Out;
}
Expand description

This trait represents a commitment to fire a Trigger<Result<Self::Out, Error>>.

§Safety

Structs that implement this trait commit to firing Trigger<Result<Self::Out, Error>> at some point in their life cycle.

Required Associated Types§

Source

type Out

Output of submitter.

Implementors§