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§

Object Safety§

This trait is not object safe.

Implementors§