pub trait LeafProxyInterface: Send + Sync {
    type GetStringResponseFut: Future<Output = Result<String, Error>> + Send;

    // Required method
    fn get_string(&self) -> Self::GetStringResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§