#[repr(C)]pub enum VSRequestPattern {
rpGeneral,
rpNoFrameReuse,
rpStrictSpatial,
}Variants§
rpGeneral
General pattern
rpNoFrameReuse
When requesting all output frames from the filter, no frame will be requested more than once from this input clip, never requests frames beyond the end of the clip
rpStrictSpatial
Always (and only) requests frame n from input clip when generating output frame n, never requests frames beyond the end of the clip
Trait Implementations§
source§impl Clone for VSRequestPattern
impl Clone for VSRequestPattern
source§fn clone(&self) -> VSRequestPattern
fn clone(&self) -> VSRequestPattern
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 VSRequestPattern
impl Debug for VSRequestPattern
source§impl Hash for VSRequestPattern
impl Hash for VSRequestPattern
source§impl Ord for VSRequestPattern
impl Ord for VSRequestPattern
source§fn cmp(&self, other: &VSRequestPattern) -> Ordering
fn cmp(&self, other: &VSRequestPattern) -> 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<VSRequestPattern> for VSRequestPattern
impl PartialEq<VSRequestPattern> for VSRequestPattern
source§fn eq(&self, other: &VSRequestPattern) -> bool
fn eq(&self, other: &VSRequestPattern) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<VSRequestPattern> for VSRequestPattern
impl PartialOrd<VSRequestPattern> for VSRequestPattern
source§fn partial_cmp(&self, other: &VSRequestPattern) -> Option<Ordering>
fn partial_cmp(&self, other: &VSRequestPattern) -> 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 VSRequestPattern
impl Eq for VSRequestPattern
impl StructuralEq for VSRequestPattern
impl StructuralPartialEq for VSRequestPattern
Auto Trait Implementations§
impl RefUnwindSafe for VSRequestPattern
impl Send for VSRequestPattern
impl Sync for VSRequestPattern
impl Unpin for VSRequestPattern
impl UnwindSafe for VSRequestPattern
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