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.
Every field is optional. Whatever is left unset falls back to the library default.
Fields§
§search_radius: Option<u32>§patch_radius: Option<u32>§strength: Option<f32>§self_weight: Option<f32>Trait Implementations§
impl Copy for NlmTuning
impl StructuralPartialEq for NlmTuning
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