#[repr(u32)]pub enum AVStreamParseType {
AVSTREAM_PARSE_NONE = 0,
AVSTREAM_PARSE_FULL = 1,
AVSTREAM_PARSE_HEADERS = 2,
AVSTREAM_PARSE_TIMESTAMPS = 3,
AVSTREAM_PARSE_FULL_ONCE = 4,
AVSTREAM_PARSE_FULL_RAW = 5,
}
Variants§
AVSTREAM_PARSE_NONE = 0
AVSTREAM_PARSE_FULL = 1
AVSTREAM_PARSE_HEADERS = 2
AVSTREAM_PARSE_TIMESTAMPS = 3
AVSTREAM_PARSE_FULL_ONCE = 4
AVSTREAM_PARSE_FULL_RAW = 5
Trait Implementations§
Source§impl Clone for AVStreamParseType
impl Clone for AVStreamParseType
Source§fn clone(&self) -> AVStreamParseType
fn clone(&self) -> AVStreamParseType
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 AVStreamParseType
impl Debug for AVStreamParseType
Source§impl Hash for AVStreamParseType
impl Hash for AVStreamParseType
Source§impl PartialEq for AVStreamParseType
impl PartialEq for AVStreamParseType
impl Copy for AVStreamParseType
impl Eq for AVStreamParseType
impl StructuralPartialEq for AVStreamParseType
Auto Trait Implementations§
impl Freeze for AVStreamParseType
impl RefUnwindSafe for AVStreamParseType
impl Send for AVStreamParseType
impl Sync for AVStreamParseType
impl Unpin for AVStreamParseType
impl UnwindSafe for AVStreamParseType
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