pub trait OffscreenKernelEnvironment: Send + Sync + 'static {
    type HttpClient: HttpClient;

    fn create() -> Self;
    fn source_client(&self) -> SourceClient<Self::HttpClient>;
}

Required Associated Types

Required Methods

Implementors