#[repr(C)]pub struct AVPixFmtDescriptor {
pub name: *const i8,
pub nb_components: u8,
pub log2_chroma_w: u8,
pub log2_chroma_h: u8,
pub flags: u64,
pub comp: [AVComponentDescriptor; 4],
pub alias: *const i8,
}Fields§
§name: *const i8§nb_components: u8§log2_chroma_w: u8§log2_chroma_h: u8§flags: u64§comp: [AVComponentDescriptor; 4]§alias: *const i8Trait Implementations§
Source§impl Clone for AVPixFmtDescriptor
impl Clone for AVPixFmtDescriptor
Source§fn clone(&self) -> AVPixFmtDescriptor
fn clone(&self) -> AVPixFmtDescriptor
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 moreimpl Copy for AVPixFmtDescriptor
Auto Trait Implementations§
impl !Send for AVPixFmtDescriptor
impl !Sync for AVPixFmtDescriptor
impl Freeze for AVPixFmtDescriptor
impl RefUnwindSafe for AVPixFmtDescriptor
impl Unpin for AVPixFmtDescriptor
impl UnsafeUnpin for AVPixFmtDescriptor
impl UnwindSafe for AVPixFmtDescriptor
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