Enum vapoursynth4_sys::VSFilterMode
source · #[repr(C)]pub enum VSFilterMode {
fmParallel,
fmParallelRequests,
fmUnordered,
fmFrameState,
}Variants§
fmParallel
completely parallel execution
fmParallelRequests
for filters that are serial in nature but can request one or more frames they need in advance
fmUnordered
for filters that modify their internal state every request like source filters that read a file
fmFrameState
DO NOT USE UNLESS ABSOLUTELY NECESSARY, for compatibility with external code that can only keep the processing state of a single frame at a time
Trait Implementations§
source§impl Clone for VSFilterMode
impl Clone for VSFilterMode
source§fn clone(&self) -> VSFilterMode
fn clone(&self) -> VSFilterMode
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 VSFilterMode
impl Debug for VSFilterMode
source§impl Hash for VSFilterMode
impl Hash for VSFilterMode
source§impl Ord for VSFilterMode
impl Ord for VSFilterMode
source§fn cmp(&self, other: &VSFilterMode) -> Ordering
fn cmp(&self, other: &VSFilterMode) -> 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<VSFilterMode> for VSFilterMode
impl PartialEq<VSFilterMode> for VSFilterMode
source§fn eq(&self, other: &VSFilterMode) -> bool
fn eq(&self, other: &VSFilterMode) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<VSFilterMode> for VSFilterMode
impl PartialOrd<VSFilterMode> for VSFilterMode
source§fn partial_cmp(&self, other: &VSFilterMode) -> Option<Ordering>
fn partial_cmp(&self, other: &VSFilterMode) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for VSFilterMode
impl Eq for VSFilterMode
impl StructuralEq for VSFilterMode
impl StructuralPartialEq for VSFilterMode
Auto Trait Implementations§
impl RefUnwindSafe for VSFilterMode
impl Send for VSFilterMode
impl Sync for VSFilterMode
impl Unpin for VSFilterMode
impl UnwindSafe for VSFilterMode
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