Trait thrussh::FromFinished[][src]

pub trait FromFinished<T>: Future<Output = Result<T, Error>> {
    fn finished(t: T) -> Self;
}
Expand description

Since handlers are large, their associated future types must implement this trait to provide reasonable default implementations (basically, rejecting all requests).

Required methods

Turns type T into Self, a future yielding T.

Implementations on Foreign Types

Implementors