pub struct Frame<T>where
T: Pixel,{
pub planes: [Plane<T>; 3],
}
Expand description
Represents a raw video frame
Fields§
§planes: [Plane<T>; 3]
Planes constituting the frame.
Implementations§
Trait Implementations§
source§impl<T> PartialEq for Frame<T>
impl<T> PartialEq for Frame<T>
impl<T> Eq for Frame<T>
impl<T> StructuralPartialEq for Frame<T>where
T: Pixel,
Auto Trait Implementations§
impl<T> Freeze for Frame<T>
impl<T> RefUnwindSafe for Frame<T>where
T: RefUnwindSafe,
impl<T> Send for Frame<T>
impl<T> Sync for Frame<T>
impl<T> Unpin for Frame<T>where
T: Unpin,
impl<T> UnwindSafe for Frame<T>where
T: RefUnwindSafe + UnwindSafe,
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