pub struct ThresholdOptions {
pub min_distance: Option<f32>,
pub max_distance: Option<f32>,
}Expand description
Options for the Threshold Filter processing block
Fields§
§min_distance: Option<f32>Minimum distance threshold in meters
max_distance: Option<f32>Maximum distance threshold in meters
Trait Implementations§
Source§impl Clone for ThresholdOptions
impl Clone for ThresholdOptions
Source§fn clone(&self) -> ThresholdOptions
fn clone(&self) -> ThresholdOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ThresholdOptions
impl Debug for ThresholdOptions
Source§impl Default for ThresholdOptions
impl Default for ThresholdOptions
Source§fn default() -> ThresholdOptions
fn default() -> ThresholdOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for ThresholdOptions
impl PartialEq for ThresholdOptions
impl StructuralPartialEq for ThresholdOptions
Auto Trait Implementations§
impl Freeze for ThresholdOptions
impl RefUnwindSafe for ThresholdOptions
impl Send for ThresholdOptions
impl Sync for ThresholdOptions
impl Unpin for ThresholdOptions
impl UnwindSafe for ThresholdOptions
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