pub trait Sl4fBridgeProxyInterface: Send + Sync {
type ExecuteResponseFut: Future<Output = Result<String, Error>> + Send;
// Required method
fn execute(
&self,
target_query: TargetQuery,
value: &str
) -> Self::ExecuteResponseFut;
}