pub struct Array { /* private fields */ }Expand description
A 3D array that represents decoded TIFF image data.
Implementations§
Source§impl Array
impl Array
Sourcepub fn data(&self) -> &TypedArray
pub fn data(&self) -> &TypedArray
Access the raw underlying byte data of the array.
Sourcepub fn into_inner(self) -> (TypedArray, [usize; 3], Option<DataType>)
pub fn into_inner(self) -> (TypedArray, [usize; 3], Option<DataType>)
Consume the Array and return its components.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Array
impl RefUnwindSafe for Array
impl Send for Array
impl Sync for Array
impl Unpin for Array
impl UnwindSafe for Array
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