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
sourcefn ping(&self) -> MethodReply<()>ⓘNotable traits for MethodReply<T>
fn ping(&self) -> MethodReply<()>ⓘNotable traits for MethodReply<T>impl<T> Future for MethodReply<T>    type Output = Result<T, Error>;
sourcefn get_machine_id(&self) -> MethodReply<String>ⓘNotable traits for MethodReply<T>