Struct epaint::image::ImageDelta
source · [−]pub struct ImageDelta {
pub image: ImageData,
pub filter: TextureFilter,
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
.
filter: TextureFilter
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
sourceimpl ImageDelta
impl ImageDelta
Trait Implementations
sourceimpl Clone for ImageDelta
impl Clone for ImageDelta
sourcefn clone(&self) -> ImageDelta
fn clone(&self) -> ImageDelta
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl PartialEq<ImageDelta> for ImageDelta
impl PartialEq<ImageDelta> for ImageDelta
sourcefn eq(&self, other: &ImageDelta) -> bool
fn eq(&self, other: &ImageDelta) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more