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

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

Required Associated Types§

Required Methods§

Implementors§