pub struct VideoFilter { /* private fields */ }
Implementations§
Source§impl VideoFilter
impl VideoFilter
pub fn new() -> VideoFilter
pub fn input<T>(self, input: T) -> Selfwhere
T: ToString,
pub fn output<T>(self, output: T) -> Selfwhere
T: ToString,
pub fn params_raw(self, params: VideoFilterParams) -> Self
pub fn params_key<K>(self, key: K) -> Selfwhere
K: ToString,
pub fn params<K, V>(self, key: K, value: V) -> Self
pub fn ok_or<F>(self, cond: bool, func: F) -> Selfwhere
F: Fn(Self) -> Self,
pub fn get_inputs(&self) -> Vec<String>
pub fn get_outputs(&self) -> Vec<String>
Trait Implementations§
Source§impl Clone for VideoFilter
impl Clone for VideoFilter
Source§fn clone(&self) -> VideoFilter
fn clone(&self) -> VideoFilter
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 moreAuto Trait Implementations§
impl Freeze for VideoFilter
impl RefUnwindSafe for VideoFilter
impl Send for VideoFilter
impl Sync for VideoFilter
impl Unpin for VideoFilter
impl UnwindSafe for VideoFilter
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