#[repr(u32)]
pub enum AVPictureStructure {
AV_PICTURE_STRUCTURE_UNKNOWN,
AV_PICTURE_STRUCTURE_TOP_FIELD,
AV_PICTURE_STRUCTURE_BOTTOM_FIELD,
AV_PICTURE_STRUCTURE_FRAME,
}Expand description
@defgroup lavc_parsing Frame parsing @{
Variants§
AV_PICTURE_STRUCTURE_UNKNOWN
AV_PICTURE_STRUCTURE_TOP_FIELD
AV_PICTURE_STRUCTURE_BOTTOM_FIELD
AV_PICTURE_STRUCTURE_FRAME
Trait Implementations§
source§impl Clone for AVPictureStructure
impl Clone for AVPictureStructure
source§fn clone(&self) -> AVPictureStructure
fn clone(&self) -> AVPictureStructure
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 moresource§impl Debug for AVPictureStructure
impl Debug for AVPictureStructure
source§impl Hash for AVPictureStructure
impl Hash for AVPictureStructure
source§impl PartialEq<AVPictureStructure> for AVPictureStructure
impl PartialEq<AVPictureStructure> for AVPictureStructure
source§fn eq(&self, other: &AVPictureStructure) -> bool
fn eq(&self, other: &AVPictureStructure) -> bool
This method tests for
self and other values to be equal, and is used
by ==.