pub enum NlmeansVariant {
Fast,
Hq,
}Expand description
Which nlmeans implementation a preset, or an explicit choice, selects.
Variants§
Fast
The fast path. Fixed weighting, no noise measurement.
Hq
Quality focused. Calibrates its weighting to the noise level, measured automatically per frame.
Trait Implementations§
Source§impl Clone for NlmeansVariant
impl Clone for NlmeansVariant
Source§fn clone(&self) -> NlmeansVariant
fn clone(&self) -> NlmeansVariant
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 NlmeansVariant
Source§impl Debug for NlmeansVariant
impl Debug for NlmeansVariant
impl Eq for NlmeansVariant
Source§impl FromStr for NlmeansVariant
impl FromStr for NlmeansVariant
Source§type Err = ParseError
type Err = ParseError
The associated error which can be returned from parsing.
Source§fn from_str(s: &str) -> Result<NlmeansVariant, <NlmeansVariant as FromStr>::Err>
fn from_str(s: &str) -> Result<NlmeansVariant, <NlmeansVariant as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl PartialEq for NlmeansVariant
impl PartialEq for NlmeansVariant
impl StructuralPartialEq for NlmeansVariant
Source§impl TryFrom<&str> for NlmeansVariant
impl TryFrom<&str> for NlmeansVariant
Source§type Error = ParseError
type Error = ParseError
The type returned in the event of a conversion error.
Source§fn try_from(
s: &str,
) -> Result<NlmeansVariant, <NlmeansVariant as TryFrom<&str>>::Error>
fn try_from( s: &str, ) -> Result<NlmeansVariant, <NlmeansVariant as TryFrom<&str>>::Error>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for NlmeansVariant
impl RefUnwindSafe for NlmeansVariant
impl Send for NlmeansVariant
impl Sync for NlmeansVariant
impl Unpin for NlmeansVariant
impl UnsafeUnpin for NlmeansVariant
impl UnwindSafe for NlmeansVariant
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.