pub trait OffscreenKernelEnvironment: Send + Sync + 'static {
type HttpClient: HttpClient;
fn create() -> Self;
fn source_client(&self) -> SourceClient<Self::HttpClient>;
}Required Associated Types
source
type HttpClient: HttpClient
Required Methods
source