Struct webrender::render_api::UpdateImage
source · pub struct UpdateImage {
pub key: ImageKey,
pub descriptor: ImageDescriptor,
pub data: ImageData,
pub dirty_rect: ImageDirtyRect,
}
Expand description
Updates an already existing image resource.
Fields§
§key: ImageKey
The key identfying the image resource to update.
descriptor: ImageDescriptor
Properties of the image.
data: ImageData
The pixels of the image.
dirty_rect: ImageDirtyRect
An optional dirty rect that lets WebRender optimize the amount of data to transfer to the GPU.
The data provided must still represent the entire image.
Trait Implementations§
source§impl Clone for UpdateImage
impl Clone for UpdateImage
source§fn clone(&self) -> UpdateImage
fn clone(&self) -> UpdateImage
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<'de> Deserialize<'de> for UpdateImage
impl<'de> Deserialize<'de> for UpdateImage
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UpdateImage
impl RefUnwindSafe for UpdateImage
impl Send for UpdateImage
impl Sync for UpdateImage
impl Unpin for UpdateImage
impl UnwindSafe for UpdateImage
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more