pub enum DenoiseChannel {
Red,
Green,
Blue,
Composite,
}Expand description
reduce noise channelDenoise channel: “red” | “green” | “blue” | “composite”
Variants§
Trait Implementations§
Source§impl Clone for DenoiseChannel
impl Clone for DenoiseChannel
Source§fn clone(&self) -> DenoiseChannel
fn clone(&self) -> DenoiseChannel
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 DenoiseChannel
Source§impl Debug for DenoiseChannel
impl Debug for DenoiseChannel
impl Eq for DenoiseChannel
Source§impl PartialEq for DenoiseChannel
impl PartialEq for DenoiseChannel
Source§fn eq(&self, other: &DenoiseChannel) -> bool
fn eq(&self, other: &DenoiseChannel) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DenoiseChannel
Auto Trait Implementations§
impl Freeze for DenoiseChannel
impl RefUnwindSafe for DenoiseChannel
impl Send for DenoiseChannel
impl Sync for DenoiseChannel
impl Unpin for DenoiseChannel
impl UnsafeUnpin for DenoiseChannel
impl UnwindSafe for DenoiseChannel
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