pub trait HttpHandler {
fn server_sdk_toggles<'life0, 'async_trait>(
&'life0 self,
__arg1: TypedHeader<SdkAuthorization>
) -> Pin<Box<dyn Future<Output = Result<Response, FPServerError>> + Send + 'async_trait>>
where
'life0: 'async_trait,
Self: 'async_trait;
fn client_sdk_toggles<'life0, 'async_trait>(
&'life0 self,
__arg1: Query<ClientParams>,
__arg2: TypedHeader<SdkAuthorization>
) -> Pin<Box<dyn Future<Output = Result<Response, FPServerError>> + Send + 'async_trait>>
where
'life0: 'async_trait,
Self: 'async_trait;
fn all_secrets<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<Json<HashMap<String, String>>, FPServerError>> + Send + 'async_trait>>
where
'life0: 'async_trait,
Self: 'async_trait;
}