pub trait AsyncBlobRasterizer: Send + Any {
// Required method
fn rasterize(&mut self, args: &mut BlobRasterizerArgs<'_>);
}Expand description
Snapshot of a BlobExtension that can render/copy pixels.
Required Methods§
Sourcefn rasterize(&mut self, args: &mut BlobRasterizerArgs<'_>)
fn rasterize(&mut self, args: &mut BlobRasterizerArgs<'_>)
Rasterize the requests addressed for this rasterizer.
Note that all requests (for all rasterizers) is shared here, the rasterizer must
find their own requests and push responses in the args.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".