pub struct InterlacedPixelsData<'a> {
pub top_sub_blocks: Vec<PixelDataSubBlock<'a>>,
pub bottom_sub_blocks: Vec<PixelDataSubBlock<'a>>,
pub stuffing_byte: Option<u8>,
}Expand description
An interlaced-pixels object data payload (coding method 0x00).
Fields§
§top_sub_blocks: Vec<PixelDataSubBlock<'a>>Top-field pixel-data sub-blocks.
bottom_sub_blocks: Vec<PixelDataSubBlock<'a>>Bottom-field pixel-data sub-blocks.
stuffing_byte: Option<u8>Stuffing byte if present.
Trait Implementations§
Source§impl<'a> Clone for InterlacedPixelsData<'a>
impl<'a> Clone for InterlacedPixelsData<'a>
Source§fn clone(&self) -> InterlacedPixelsData<'a>
fn clone(&self) -> InterlacedPixelsData<'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 moreSource§impl<'a> Debug for InterlacedPixelsData<'a>
impl<'a> Debug for InterlacedPixelsData<'a>
impl<'a> Eq for InterlacedPixelsData<'a>
Source§impl<'a> PartialEq for InterlacedPixelsData<'a>
impl<'a> PartialEq for InterlacedPixelsData<'a>
Source§impl<'a> Serialize for InterlacedPixelsData<'a>
impl<'a> Serialize for InterlacedPixelsData<'a>
impl<'a> StructuralPartialEq for InterlacedPixelsData<'a>
Auto Trait Implementations§
impl<'a> Freeze for InterlacedPixelsData<'a>
impl<'a> RefUnwindSafe for InterlacedPixelsData<'a>
impl<'a> Send for InterlacedPixelsData<'a>
impl<'a> Sync for InterlacedPixelsData<'a>
impl<'a> Unpin for InterlacedPixelsData<'a>
impl<'a> UnsafeUnpin for InterlacedPixelsData<'a>
impl<'a> UnwindSafe for InterlacedPixelsData<'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