#[non_exhaustive]pub struct Av1CBox {
pub seq_profile: u8,
pub seq_level_idx_0: u8,
pub seq_tier_0: bool,
pub high_bitdepth: bool,
pub twelve_bit: bool,
pub monochrome: bool,
pub chroma_subsampling_x: bool,
pub chroma_subsampling_y: bool,
pub chroma_sample_position: u8,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.seq_profile: u8§seq_level_idx_0: u8§seq_tier_0: bool§high_bitdepth: bool§twelve_bit: bool§monochrome: bool§chroma_subsampling_x: bool§chroma_subsampling_y: bool§chroma_sample_position: u8Trait Implementations§
impl Copy for Av1CBox
Auto Trait Implementations§
impl Freeze for Av1CBox
impl RefUnwindSafe for Av1CBox
impl Send for Av1CBox
impl Sync for Av1CBox
impl Unpin for Av1CBox
impl UnsafeUnpin for Av1CBox
impl UnwindSafe for Av1CBox
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