#[repr(i32)]pub enum RecQueryKind {
OverlapAabb = 0,
OverlapShape = 1,
CastRay = 2,
CastShape = 3,
CastRayClosest = 4,
CastMover = 5,
CollideMover = 6,
}Expand description
Public query kind for the player frame-query store. (b3RecQueryType)
Variants§
OverlapAabb = 0
OverlapShape = 1
CastRay = 2
CastShape = 3
CastRayClosest = 4
CastMover = 5
CollideMover = 6
Trait Implementations§
Source§impl Clone for RecQueryKind
impl Clone for RecQueryKind
Source§fn clone(&self) -> RecQueryKind
fn clone(&self) -> RecQueryKind
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 RecQueryKind
Source§impl Debug for RecQueryKind
impl Debug for RecQueryKind
impl Eq for RecQueryKind
Source§impl PartialEq for RecQueryKind
impl PartialEq for RecQueryKind
impl StructuralPartialEq for RecQueryKind
Auto Trait Implementations§
impl Freeze for RecQueryKind
impl RefUnwindSafe for RecQueryKind
impl Send for RecQueryKind
impl Sync for RecQueryKind
impl Unpin for RecQueryKind
impl UnsafeUnpin for RecQueryKind
impl UnwindSafe for RecQueryKind
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