#[repr(i32)]pub enum HitTestShapeType {
Box = 0,
Sphere = 1,
Capsule = 2,
Cylinder = 3,
Mesh = 4,
}Expand description
Hit-test shape type (SSGS / ATVL), same semantics as PhysicsShapeType but u32
Variants§
Trait Implementations§
Source§impl Clone for HitTestShapeType
impl Clone for HitTestShapeType
Source§fn clone(&self) -> HitTestShapeType
fn clone(&self) -> HitTestShapeType
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 HitTestShapeType
Source§impl Debug for HitTestShapeType
impl Debug for HitTestShapeType
impl Eq for HitTestShapeType
Source§impl Hash for HitTestShapeType
impl Hash for HitTestShapeType
Source§impl PartialEq for HitTestShapeType
impl PartialEq for HitTestShapeType
impl StructuralPartialEq for HitTestShapeType
Auto Trait Implementations§
impl Freeze for HitTestShapeType
impl RefUnwindSafe for HitTestShapeType
impl Send for HitTestShapeType
impl Sync for HitTestShapeType
impl Unpin for HitTestShapeType
impl UnsafeUnpin for HitTestShapeType
impl UnwindSafe for HitTestShapeType
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