pub enum Planes<'a> {
Depth8(Planes8<'a>),
Depth16(Planes16<'a>),
}Expand description
Zero-copy access to pixel planes
Dispatches on bit depth for type safety.
Variants§
Auto Trait Implementations§
impl<'a> Freeze for Planes<'a>
impl<'a> !RefUnwindSafe for Planes<'a>
impl<'a> Send for Planes<'a>
impl<'a> Sync for Planes<'a>
impl<'a> Unpin for Planes<'a>
impl<'a> UnsafeUnpin for Planes<'a>
impl<'a> !UnwindSafe for Planes<'a>
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