pub struct NlmTuning {
pub search_radius: Option<u32>,
pub patch_radius: Option<u32>,
pub strength: Option<f32>,
pub self_weight: Option<f32>,
}Expand description
NLM tuning knobs. All optional; missing fields fall back to library defaults.
Fields§
§search_radius: Option<u32>§patch_radius: Option<u32>§strength: Option<f32>§self_weight: Option<f32>Trait Implementations§
Auto Trait Implementations§
impl Freeze for NlmTuning
impl RefUnwindSafe for NlmTuning
impl Send for NlmTuning
impl Sync for NlmTuning
impl Unpin for NlmTuning
impl UnsafeUnpin for NlmTuning
impl UnwindSafe for NlmTuning
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