Trait drone_core::thr::ExecOutput [−][src]
A trait for implementing arbitrary output types for futures passed to
ThrExec::exec
and ThrExec::add_exec
.
Associated Types
type Terminate
[src]
The return type of ExecOutput::terminate
. Should be either ()
or
!
.
Required methods
fn terminate(self) -> Self::Terminate
[src]
A result handler for an executor. The returned value will not be used,
so the only useful types are ()
and !
. The handler may choose to
panic on an erroneous value.