pub enum AlgorithmKind {
Nlmeans,
Nl4d,
}Expand description
Which denoising algorithm a filter function runs.
avd.Nlmeans builds AlgorithmKind::Nlmeans, avd.Nl4d builds
AlgorithmKind::Nl4d. This has no Hq variant since the
VapourSynth plugin does not expose the HQ variant separately, it
takes a plain algorithm choice per filter function.
Variants§
Trait Implementations§
Source§impl Clone for AlgorithmKind
impl Clone for AlgorithmKind
Source§fn clone(&self) -> AlgorithmKind
fn clone(&self) -> AlgorithmKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AlgorithmKind
Source§impl Debug for AlgorithmKind
impl Debug for AlgorithmKind
impl Eq for AlgorithmKind
Source§impl PartialEq for AlgorithmKind
impl PartialEq for AlgorithmKind
impl StructuralPartialEq for AlgorithmKind
Auto Trait Implementations§
impl Freeze for AlgorithmKind
impl RefUnwindSafe for AlgorithmKind
impl Send for AlgorithmKind
impl Sync for AlgorithmKind
impl Unpin for AlgorithmKind
impl UnsafeUnpin for AlgorithmKind
impl UnwindSafe for AlgorithmKind
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
Source§impl<C> CloneExpand for Cwhere
C: Clone,
impl<C> CloneExpand for Cwhere
C: Clone,
fn __expand_clone_method(&self, _scope: &mut Scope) -> C
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.