pub struct Image { /* private fields */ }Implementations§
Source§impl Image
impl Image
Sourcepub fn new(width: u32, height: u32) -> Self
pub fn new(width: u32, height: u32) -> Self
Creates a new image with the given width and height.
Sourcepub fn from_data(
width: u32,
height: u32,
data: Vec<u32>,
) -> Result<Self, String>
pub fn from_data( width: u32, height: u32, data: Vec<u32>, ) -> Result<Self, String>
Create a new image from a boxed slice of colors
Sourcepub fn from_path<P: AsRef<Path>>(path: P) -> Result<Self, String>
pub fn from_path<P: AsRef<Path>>(path: P) -> Result<Self, String>
Load an image from file path. Supports BMP and PNG
pub fn data(&self) -> &[u32]
pub fn data_mut(&mut self) -> &mut [u32]
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Image
impl RefUnwindSafe for Image
impl Send for Image
impl Sync for Image
impl Unpin for Image
impl UnsafeUnpin 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