pub struct Yuv420pRow<'a> { /* private fields */ }Expand description
One output row of a YUV 4:2:0 source handed to a Yuv420pSink.
Carries borrows to the source slices (full-width Y, half-width U/V) plus the row index and matrix/range carry-throughs. Sinks that need full-width chroma upsample inline via the crate’s fused row primitives.
Implementations§
Source§impl<'a> Yuv420pRow<'a>
impl<'a> Yuv420pRow<'a>
Trait Implementations§
Source§impl<'a> Clone for Yuv420pRow<'a>
impl<'a> Clone for Yuv420pRow<'a>
Source§fn clone(&self) -> Yuv420pRow<'a>
fn clone(&self) -> Yuv420pRow<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for Yuv420pRow<'a>
Auto Trait Implementations§
impl<'a> Freeze for Yuv420pRow<'a>
impl<'a> RefUnwindSafe for Yuv420pRow<'a>
impl<'a> Send for Yuv420pRow<'a>
impl<'a> Sync for Yuv420pRow<'a>
impl<'a> Unpin for Yuv420pRow<'a>
impl<'a> UnsafeUnpin for Yuv420pRow<'a>
impl<'a> UnwindSafe for Yuv420pRow<'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