pub struct BackgroundSpeechDenoisingPlan {
pub smart_denoising_plan: Option<SmartDenoisingPlan>,
pub fourier_denoising_plan: Option<FourierDenoisingPlan>,
}
Fields§
§smart_denoising_plan: Option<SmartDenoisingPlan>
Whether smart denoising using Krisp is enabled.
fourier_denoising_plan: Option<FourierDenoisingPlan>
Whether Fourier denoising is enabled. Note that this is experimental and may not work as expected. This can be combined with smart denoising, and will be run afterwards.
Implementations§
Trait Implementations§
Source§impl Clone for BackgroundSpeechDenoisingPlan
impl Clone for BackgroundSpeechDenoisingPlan
Source§fn clone(&self) -> BackgroundSpeechDenoisingPlan
fn clone(&self) -> BackgroundSpeechDenoisingPlan
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for BackgroundSpeechDenoisingPlan
impl Default for BackgroundSpeechDenoisingPlan
Source§fn default() -> BackgroundSpeechDenoisingPlan
fn default() -> BackgroundSpeechDenoisingPlan
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BackgroundSpeechDenoisingPlan
impl<'de> Deserialize<'de> for BackgroundSpeechDenoisingPlan
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BackgroundSpeechDenoisingPlan
impl PartialEq for BackgroundSpeechDenoisingPlan
Source§fn eq(&self, other: &BackgroundSpeechDenoisingPlan) -> bool
fn eq(&self, other: &BackgroundSpeechDenoisingPlan) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for BackgroundSpeechDenoisingPlan
Auto Trait Implementations§
impl Freeze for BackgroundSpeechDenoisingPlan
impl RefUnwindSafe for BackgroundSpeechDenoisingPlan
impl Send for BackgroundSpeechDenoisingPlan
impl Sync for BackgroundSpeechDenoisingPlan
impl Unpin for BackgroundSpeechDenoisingPlan
impl UnwindSafe for BackgroundSpeechDenoisingPlan
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