pub struct SpatialQueryObservation<T> {
pub result: T,
pub broad_phase_candidates: usize,
}Expand description
Exact query result together with the number of broad-phase candidates examined.
Fields§
§result: T§broad_phase_candidates: usizeTrait Implementations§
Source§impl<T: Clone> Clone for SpatialQueryObservation<T>
impl<T: Clone> Clone for SpatialQueryObservation<T>
Source§fn clone(&self) -> SpatialQueryObservation<T>
fn clone(&self) -> SpatialQueryObservation<T>
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<T: Debug> Debug for SpatialQueryObservation<T>
impl<T: Debug> Debug for SpatialQueryObservation<T>
Source§impl<T: PartialEq> PartialEq for SpatialQueryObservation<T>
impl<T: PartialEq> PartialEq for SpatialQueryObservation<T>
impl<T: Eq> Eq for SpatialQueryObservation<T>
impl<T> StructuralPartialEq for SpatialQueryObservation<T>
Auto Trait Implementations§
impl<T> Freeze for SpatialQueryObservation<T>where
T: Freeze,
impl<T> RefUnwindSafe for SpatialQueryObservation<T>where
T: RefUnwindSafe,
impl<T> Send for SpatialQueryObservation<T>where
T: Send,
impl<T> Sync for SpatialQueryObservation<T>where
T: Sync,
impl<T> Unpin for SpatialQueryObservation<T>where
T: Unpin,
impl<T> UnsafeUnpin for SpatialQueryObservation<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for SpatialQueryObservation<T>where
T: UnwindSafe,
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