pub trait VarlinkFingerClientProxyChain<'c, S>where
S: Socket,{
// Required method
fn finger(self, user_queries: Vec<String>) -> Result<Chain<'c, S>>;
}Expand description
Extension trait for adding proxy calls to any chain.
This trait provides methods to add proxy calls to a chain of method calls.