Trait drone_sx1276::conn::Reset [] [src]

pub trait Reset<T>: Conn {
    type ResetErrorKind: Sized + Send + PartialEq + Eq + Debug + 'static;
    fn reset(
        self,
        timer: T
    ) -> Box<Future<Item = (Self, T), Error = ResetError<Self, T>> + Send>; }

Generic reset over timer T.

Associated Types

Erroneous result of the future returned by reset.

Required Methods

Runs a reset procedure, and returns a future for its result.

Implementors