pub struct VideoPlane {
pub stride: usize,
pub data: Vec<u8>,
}Fields§
§stride: usizeBytes per row in data.
data: Vec<u8>Trait Implementations§
Source§impl Clone for VideoPlane
impl Clone for VideoPlane
Source§fn clone(&self) -> VideoPlane
fn clone(&self) -> VideoPlane
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for VideoPlane
impl RefUnwindSafe for VideoPlane
impl Send for VideoPlane
impl Sync for VideoPlane
impl Unpin for VideoPlane
impl UnsafeUnpin for VideoPlane
impl UnwindSafe for VideoPlane
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