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 PartialEq for ImageDelta
impl PartialEq for ImageDelta
impl StructuralPartialEq for ImageDelta
Auto Trait Implementations§
impl Freeze for ImageDelta
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)