pub struct RasterData {
pub pixels: Vec<u8>,
pub x: u32,
pub y: u32,
pub width: u32,
pub height: u32,
pub opacity: u8,
}Expand description
Raster layer data
Fields§
§pixels: Vec<u8>Pixel data (RGBA)
x: u32Layer X position
y: u32Layer Y position
width: u32Layer width
height: u32Layer height
opacity: u8Opacity (0-255)
Auto Trait Implementations§
impl Freeze for RasterData
impl RefUnwindSafe for RasterData
impl Send for RasterData
impl Sync for RasterData
impl Unpin for RasterData
impl UnsafeUnpin for RasterData
impl UnwindSafe for RasterData
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