Struct Image
pub struct Image { /* private fields */ }
Implementations§
§impl Image
impl Image
pub fn from_srgba(
data: &[[u8; 4]],
width: usize,
height: usize,
) -> Result<Image, ImageError>
pub fn from_srgba( data: &[[u8; 4]], width: usize, height: usize, ) -> Result<Image, ImageError>
Creates an image from sRGB
color channels and linear alpha.
The boxed array size must match the image dimensions.
pub fn from_linear_rgba( data: &[[f32; 4]], width: usize, height: usize, ) -> Result<Image, ImageError>
pub fn id(&self) -> ImageId
pub fn width(&self) -> u32
pub fn height(&self) -> u32
pub fn data(&self) -> &[[f16; 4]]
Trait Implementations§
impl Eq for Image
Auto Trait Implementations§
impl Freeze for Image
impl RefUnwindSafe for Image
impl Send for Image
impl Sync for Image
impl Unpin for Image
impl UnwindSafe for Image
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§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