pub struct LossyHeader {
pub frame: Vp8FrameHeader,
pub picture: Vp8PictureHeader,
pub macroblock_width: usize,
pub macroblock_height: usize,
pub segment: SegmentHeader,
pub filter: FilterHeader,
pub token_partition_sizes: Vec<usize>,
pub quantization: Quantization,
pub probabilities: ProbabilityUpdateSummary,
}Fields§
§frame: Vp8FrameHeader§picture: Vp8PictureHeader§macroblock_width: usize§macroblock_height: usize§segment: SegmentHeader§filter: FilterHeader§token_partition_sizes: Vec<usize>§quantization: Quantization§probabilities: ProbabilityUpdateSummaryTrait Implementations§
Source§impl Clone for LossyHeader
impl Clone for LossyHeader
Source§fn clone(&self) -> LossyHeader
fn clone(&self) -> LossyHeader
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 moreSource§impl Debug for LossyHeader
impl Debug for LossyHeader
Source§impl PartialEq for LossyHeader
impl PartialEq for LossyHeader
impl Eq for LossyHeader
impl StructuralPartialEq for LossyHeader
Auto Trait Implementations§
impl Freeze for LossyHeader
impl RefUnwindSafe for LossyHeader
impl Send for LossyHeader
impl Sync for LossyHeader
impl Unpin for LossyHeader
impl UnsafeUnpin for LossyHeader
impl UnwindSafe for LossyHeader
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