pub struct SphereQuery {
pub center: Vec3,
pub radius: f32,
pub mask: u32,
}Expand description
Parameters for a sphere overlap query.
Fields§
§center: Vec3§radius: f32§mask: u32Trait Implementations§
Source§impl Clone for SphereQuery
impl Clone for SphereQuery
Source§fn clone(&self) -> SphereQuery
fn clone(&self) -> SphereQuery
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 moreAuto Trait Implementations§
impl Freeze for SphereQuery
impl RefUnwindSafe for SphereQuery
impl Send for SphereQuery
impl Sync for SphereQuery
impl Unpin for SphereQuery
impl UnsafeUnpin for SphereQuery
impl UnwindSafe for SphereQuery
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