pub struct ScanOdometryConfig {
pub max_scans: usize,
pub min_points: usize,
}Expand description
Bounds and validation settings for scan-sequence odometry.
Fields§
§max_scans: usizeMaximum number of scans retained from the selected topic prefix.
min_points: usizeMinimum points required in every scan passed to the matcher.
Implementations§
Trait Implementations§
Source§impl Clone for ScanOdometryConfig
impl Clone for ScanOdometryConfig
Source§fn clone(&self) -> ScanOdometryConfig
fn clone(&self) -> ScanOdometryConfig
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 moreSource§impl Debug for ScanOdometryConfig
impl Debug for ScanOdometryConfig
Source§impl Default for ScanOdometryConfig
impl Default for ScanOdometryConfig
Source§impl PartialEq for ScanOdometryConfig
impl PartialEq for ScanOdometryConfig
Source§fn eq(&self, other: &ScanOdometryConfig) -> bool
fn eq(&self, other: &ScanOdometryConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ScanOdometryConfig
impl Eq for ScanOdometryConfig
impl StructuralPartialEq for ScanOdometryConfig
Auto Trait Implementations§
impl Freeze for ScanOdometryConfig
impl RefUnwindSafe for ScanOdometryConfig
impl Send for ScanOdometryConfig
impl Sync for ScanOdometryConfig
impl Unpin for ScanOdometryConfig
impl UnsafeUnpin for ScanOdometryConfig
impl UnwindSafe for ScanOdometryConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more