pub struct VPxConfigBox {
pub bit_depth: u8,
pub color_space: u8,
pub chroma_subsampling: u8,
pub codec_init: Vec<u8>,
/* private fields */
}
Expand description
Represent a Video Partition Codec Configuration ‘vpcC’ box (aka vp9).
Fields§
§bit_depth: u8
§color_space: u8
§chroma_subsampling: u8
§codec_init: Vec<u8>
Trait Implementations§
Source§impl Clone for VPxConfigBox
impl Clone for VPxConfigBox
Source§fn clone(&self) -> VPxConfigBox
fn clone(&self) -> VPxConfigBox
Returns a copy 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 VPxConfigBox
impl RefUnwindSafe for VPxConfigBox
impl Send for VPxConfigBox
impl Sync for VPxConfigBox
impl Unpin for VPxConfigBox
impl UnwindSafe for VPxConfigBox
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