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.