Struct PhysicsServer3DExtensionShapeResult
#[repr(C)]pub struct PhysicsServer3DExtensionShapeResult {
pub rid: Rid,
pub collider_id: ObjectId,
pub raw_collider_ptr: *mut c_void,
pub shape: i32,
}
Expand description
Fields§
§rid: Rid
§collider_id: ObjectId
§raw_collider_ptr: *mut c_void
§shape: i32
Implementations§
§impl PhysicsServer3DExtensionShapeResult
impl PhysicsServer3DExtensionShapeResult
pub fn get_collider(&self) -> Option<Gd<Object>>
pub fn get_collider(&self) -> Option<Gd<Object>>
Returns the object as a Gd<Node>
, or None
if it no longer exists.
pub fn set_collider<T>(&mut self, collider: Gd<T>)
pub fn set_collider<T>(&mut self, collider: Gd<T>)
Sets the object from a Gd
pointer holding Node
or a derived class.
Trait Implementations§
§impl Clone for PhysicsServer3DExtensionShapeResult
impl Clone for PhysicsServer3DExtensionShapeResult
§fn clone(&self) -> PhysicsServer3DExtensionShapeResult
fn clone(&self) -> PhysicsServer3DExtensionShapeResult
Returns a copy 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 more§impl PartialEq for PhysicsServer3DExtensionShapeResult
impl PartialEq for PhysicsServer3DExtensionShapeResult
§fn eq(&self, other: &PhysicsServer3DExtensionShapeResult) -> bool
fn eq(&self, other: &PhysicsServer3DExtensionShapeResult) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PhysicsServer3DExtensionShapeResult
Auto Trait Implementations§
impl Freeze for PhysicsServer3DExtensionShapeResult
impl RefUnwindSafe for PhysicsServer3DExtensionShapeResult
impl !Send for PhysicsServer3DExtensionShapeResult
impl !Sync for PhysicsServer3DExtensionShapeResult
impl Unpin for PhysicsServer3DExtensionShapeResult
impl UnwindSafe for PhysicsServer3DExtensionShapeResult
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