Struct epaint::image::ImageDelta
source · pub struct ImageDelta {
pub image: ImageData,
pub options: TextureOptions,
pub pos: Option<[usize; 2]>,
}
Expand description
A change to an image.
Either a whole new image, or an update to a rectangular region of it.
Fields§
§image: ImageData
What to set the texture to.
If Self::pos
is None
, this describes the whole texture.
If Self::pos
is Some
, this describes a patch of the whole image starting at Self::pos
.
options: TextureOptions
§pos: Option<[usize; 2]>
If None
, set the whole texture to Self::image
.
If Some(pos)
, update a sub-region of an already allocated texture with the patch in Self::image
.
Implementations§
source§impl ImageDelta
impl ImageDelta
Trait Implementations§
source§impl Clone for ImageDelta
impl Clone for ImageDelta
source§fn clone(&self) -> ImageDelta
fn clone(&self) -> ImageDelta
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 ImageDelta
impl<'de> Deserialize<'de> for ImageDelta
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
source§impl PartialEq for ImageDelta
impl PartialEq for ImageDelta
source§fn eq(&self, other: &ImageDelta) -> bool
fn eq(&self, other: &ImageDelta) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ImageDelta
impl Serialize for ImageDelta
impl StructuralPartialEq for ImageDelta
Auto Trait Implementations§
impl RefUnwindSafe for ImageDelta
impl Send for ImageDelta
impl Sync for ImageDelta
impl Unpin for ImageDelta
impl UnwindSafe for ImageDelta
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