pub struct MinimalRasterMeta {
pub width: u16,
pub height: u16,
pub bands: u8,
pub pixel_size: u8,
}Expand description
Minimal raster metadata
Fields§
§width: u16Width in pixels
height: u16Height in pixels
bands: u8Number of bands
pixel_size: u8Data type size in bytes
Implementations§
Trait Implementations§
Source§impl Clone for MinimalRasterMeta
impl Clone for MinimalRasterMeta
Source§fn clone(&self) -> MinimalRasterMeta
fn clone(&self) -> MinimalRasterMeta
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 MinimalRasterMeta
impl Debug for MinimalRasterMeta
impl Copy for MinimalRasterMeta
Auto Trait Implementations§
impl Freeze for MinimalRasterMeta
impl RefUnwindSafe for MinimalRasterMeta
impl Send for MinimalRasterMeta
impl Sync for MinimalRasterMeta
impl Unpin for MinimalRasterMeta
impl UnsafeUnpin for MinimalRasterMeta
impl UnwindSafe for MinimalRasterMeta
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