pub trait Peer {
    fn ping(&self) -> MethodReply<()>Notable traits for MethodReply<T>impl<T> Future for MethodReply<T>    type Output = Result<T, Error>;;
    fn get_machine_id(&self) -> MethodReply<String>Notable traits for MethodReply<T>impl<T> Future for MethodReply<T>    type Output = Result<T, Error>;;
}

Required Methods

Implementors