pub struct ImageRefMut<'a> {
data: &'a mut [RGBA8],
width: u32,
height: u32,
}Expand description
A mutable ImageRef variant.
Fields§
§data: &'a mut [RGBA8]§width: u32§height: u32Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ImageRefMut<'a>
impl<'a> RefUnwindSafe for ImageRefMut<'a>
impl<'a> Send for ImageRefMut<'a>
impl<'a> Sync for ImageRefMut<'a>
impl<'a> Unpin for ImageRefMut<'a>
impl<'a> !UnwindSafe for ImageRefMut<'a>
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