#[repr(C)]pub struct AVFilterChain {
pub filters: *mut *mut AVFilterParams,
pub nb_filters: usize,
}Expand description
A filterchain is a list of filter specifications.
Created as a child of AVFilterGraphSegment by avfilter_graph_segment_parse(). Freed in avfilter_graph_segment_free().
Fields§
§filters: *mut *mut AVFilterParams§nb_filters: usizeTrait Implementations§
Source§impl Clone for AVFilterChain
impl Clone for AVFilterChain
Source§fn clone(&self) -> AVFilterChain
fn clone(&self) -> AVFilterChain
Returns a duplicate 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 AVFilterChain
impl Debug for AVFilterChain
Source§impl Default for AVFilterChain
impl Default for AVFilterChain
Source§impl Hash for AVFilterChain
impl Hash for AVFilterChain
Source§impl Ord for AVFilterChain
impl Ord for AVFilterChain
Source§fn cmp(&self, other: &AVFilterChain) -> Ordering
fn cmp(&self, other: &AVFilterChain) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AVFilterChain
impl PartialEq for AVFilterChain
Source§impl PartialOrd for AVFilterChain
impl PartialOrd for AVFilterChain
impl Copy for AVFilterChain
impl Eq for AVFilterChain
impl StructuralPartialEq for AVFilterChain
Auto Trait Implementations§
impl Freeze for AVFilterChain
impl RefUnwindSafe for AVFilterChain
impl !Send for AVFilterChain
impl !Sync for AVFilterChain
impl Unpin for AVFilterChain
impl UnwindSafe for AVFilterChain
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