pub trait Detach<F: Future, I> {
type Output;
// Required method
fn detach(self) -> (ReadyOrNot<F>, Self::Output);
}
Expand description
A trait that defines the operation of detaching a future of type F
at index I
.
Required Associated Types§
Required Methods§
Sourcefn detach(self) -> (ReadyOrNot<F>, Self::Output)
fn detach(self) -> (ReadyOrNot<F>, Self::Output)
Detaches the future at index I
.