pub struct RelevancyRegion {
pub center: [f32; 3],
pub radius: f32,
pub priority_falloff: f32,
pub min_priority: f32,
}Expand description
A spatial region used for area-of-interest filtering.
Fields§
§center: [f32; 3]§radius: f32§priority_falloff: f32§min_priority: f32Implementations§
Trait Implementations§
Source§impl Clone for RelevancyRegion
impl Clone for RelevancyRegion
Source§fn clone(&self) -> RelevancyRegion
fn clone(&self) -> RelevancyRegion
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 RelevancyRegion
impl RefUnwindSafe for RelevancyRegion
impl Send for RelevancyRegion
impl Sync for RelevancyRegion
impl Unpin for RelevancyRegion
impl UnsafeUnpin for RelevancyRegion
impl UnwindSafe for RelevancyRegion
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