Struct webrender_api::image::BlobImageParams
source · pub struct BlobImageParams {
pub request: BlobImageRequest,
pub descriptor: BlobImageDescriptor,
pub dirty_rect: BlobDirtyRect,
}
Expand description
Input parameters for the BlobImageRasterizer.
Fields§
§request: BlobImageRequest
A key that identifies the blob image rasterization request.
descriptor: BlobImageDescriptor
Description of the format of the blob’s output image.
dirty_rect: BlobDirtyRect
An optional sub-rectangle of the image to avoid re-rasterizing the entire image when only a portion is updated.
If set to None the entire image is rasterized.
Trait Implementations§
source§impl Clone for BlobImageParams
impl Clone for BlobImageParams
source§fn clone(&self) -> BlobImageParams
fn clone(&self) -> BlobImageParams
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for BlobImageParams
impl Debug for BlobImageParams
impl Copy for BlobImageParams
Auto Trait Implementations§
impl Freeze for BlobImageParams
impl RefUnwindSafe for BlobImageParams
impl Send for BlobImageParams
impl Sync for BlobImageParams
impl Unpin for BlobImageParams
impl UnwindSafe for BlobImageParams
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more