#[repr(C)]pub struct AVBitStreamFilterContext {
pub priv_data: *mut c_void,
pub filter: *const AVBitStreamFilter,
pub parser: *mut AVCodecParserContext,
pub next: *mut AVBitStreamFilterContext,
pub args: *mut c_char,
}
Fields§
§priv_data: *mut c_void
§filter: *const AVBitStreamFilter
§parser: *mut AVCodecParserContext
§next: *mut AVBitStreamFilterContext
§args: *mut c_char
Internal default arguments, used if NULL is passed to av_bitstream_filter_filter(). Not for access by library users.
Trait Implementations§
Source§impl Clone for AVBitStreamFilterContext
impl Clone for AVBitStreamFilterContext
Source§fn clone(&self) -> AVBitStreamFilterContext
fn clone(&self) -> AVBitStreamFilterContext
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 AVBitStreamFilterContext
impl Debug for AVBitStreamFilterContext
impl Copy for AVBitStreamFilterContext
Auto Trait Implementations§
impl Freeze for AVBitStreamFilterContext
impl RefUnwindSafe for AVBitStreamFilterContext
impl !Send for AVBitStreamFilterContext
impl !Sync for AVBitStreamFilterContext
impl Unpin for AVBitStreamFilterContext
impl UnwindSafe for AVBitStreamFilterContext
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