pub trait NodeTokenProxyInterface: Send + Sync {
type GetResponseFut: Future<Output = Result<NodeTokenGetResult, Error>> + Send;
// Required method
fn get(&self) -> Self::GetResponseFut;
}pub trait NodeTokenProxyInterface: Send + Sync {
type GetResponseFut: Future<Output = Result<NodeTokenGetResult, Error>> + Send;
// Required method
fn get(&self) -> Self::GetResponseFut;
}