pub struct DynamicTreeClosestResult {
pub stats: TreeStats,
pub min_distance_squared: f32,
}Expand description
Summary returned by a closest-point query.
Fields§
§stats: TreeStatsTraversal statistics reported by Box3D.
min_distance_squared: f32Final squared distance bound after all callback updates.
Trait Implementations§
Source§impl Clone for DynamicTreeClosestResult
impl Clone for DynamicTreeClosestResult
Source§fn clone(&self) -> DynamicTreeClosestResult
fn clone(&self) -> DynamicTreeClosestResult
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 moreimpl Copy for DynamicTreeClosestResult
Source§impl Debug for DynamicTreeClosestResult
impl Debug for DynamicTreeClosestResult
Source§impl PartialEq for DynamicTreeClosestResult
impl PartialEq for DynamicTreeClosestResult
Source§fn eq(&self, other: &DynamicTreeClosestResult) -> bool
fn eq(&self, other: &DynamicTreeClosestResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DynamicTreeClosestResult
Auto Trait Implementations§
impl Freeze for DynamicTreeClosestResult
impl RefUnwindSafe for DynamicTreeClosestResult
impl Send for DynamicTreeClosestResult
impl Sync for DynamicTreeClosestResult
impl Unpin for DynamicTreeClosestResult
impl UnsafeUnpin for DynamicTreeClosestResult
impl UnwindSafe for DynamicTreeClosestResult
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