pub struct FrameQuery {
pub kind: RecQueryKind,
pub hit_count: i32,
pub key: u64,
pub filter: QueryFilter,
pub origin: Pos,
pub translation: Vec3,
pub aabb: Aabb,
}Expand description
Stashed per-frame query for the player. (b3RecDrawQuery subset)
Fields§
§kind: RecQueryKind§hit_count: i32§key: u64§filter: QueryFilter§origin: Pos§translation: Vec3§aabb: AabbTrait Implementations§
Source§impl Clone for FrameQuery
impl Clone for FrameQuery
Source§fn clone(&self) -> FrameQuery
fn clone(&self) -> FrameQuery
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 moreAuto Trait Implementations§
impl Freeze for FrameQuery
impl RefUnwindSafe for FrameQuery
impl Send for FrameQuery
impl Sync for FrameQuery
impl Unpin for FrameQuery
impl UnsafeUnpin for FrameQuery
impl UnwindSafe for FrameQuery
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