pub struct ImageDimentions {
pub width: u32,
pub height: u32,
pub unpadded_bytes_per_row: u32,
pub padded_bytes_per_row: u32,
}Fields§
§width: u32§height: u32§unpadded_bytes_per_row: u32§padded_bytes_per_row: u32Implementations§
Trait Implementations§
Source§impl Clone for ImageDimentions
impl Clone for ImageDimentions
Source§fn clone(&self) -> ImageDimentions
fn clone(&self) -> ImageDimentions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ImageDimentions
impl Debug for ImageDimentions
impl Copy for ImageDimentions
Auto Trait Implementations§
impl Freeze for ImageDimentions
impl RefUnwindSafe for ImageDimentions
impl Send for ImageDimentions
impl Sync for ImageDimentions
impl Unpin for ImageDimentions
impl UnwindSafe for ImageDimentions
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