Skip to main content

PlaneView8

Struct PlaneView8 

Source
pub struct PlaneView8<'a> { /* private fields */ }
Expand description

Zero-copy view of an 8-bit plane

Provides row-based and pixel-based access to decoded data.

Implementations§

Source§

impl<'a> PlaneView8<'a>

Source

pub fn row(&self, y: usize) -> &[u8]

Get a row by index (0-based)

§Panics

Panics if y >= height.

Source

pub fn pixel(&self, x: usize, y: usize) -> u8

Get a single pixel value

§Panics

Panics if coordinates are out of bounds.

Source

pub fn rows(&'a self) -> impl Iterator<Item = &'a [u8]> + 'a

Iterate over rows

Source

pub fn as_slice(&self) -> &[u8]

Raw slice (includes padding, use stride for 2D indexing)

Source

pub fn width(&self) -> usize

Source

pub fn height(&self) -> usize

Source

pub fn stride(&self) -> usize

Auto Trait Implementations§

§

impl<'a> Freeze for PlaneView8<'a>

§

impl<'a> !RefUnwindSafe for PlaneView8<'a>

§

impl<'a> Send for PlaneView8<'a>

§

impl<'a> Sync for PlaneView8<'a>

§

impl<'a> Unpin for PlaneView8<'a>

§

impl<'a> UnsafeUnpin for PlaneView8<'a>

§

impl<'a> !UnwindSafe for PlaneView8<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> To for T
where T: ?Sized,

Source§

fn to<T>(self) -> T
where Self: Into<T>,

Converts to T by calling Into<T>::into.
Source§

fn try_to<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Tries to convert to T by calling TryInto<T>::try_into.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.