pub trait Frontend<O = Options>where
O: DeserializeOwned,{
// Required method
fn run<'async_trait>(
self,
bridge: Bridge,
options: O,
) -> Pin<Box<dyn Future<Output = Result<FrontendOutput, Error>> + Send + 'async_trait>>
where Self: 'async_trait;
}