Trait thrussh::FromFinished

source ·
pub trait FromFinished<T, E>: Future<Item = T, Error = E> {
    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