Struct PhysicsServer3DExtensionShapeResult
#[repr(C)]pub struct PhysicsServer3DExtensionShapeResult {
pub rid: Rid,
pub collider_id: ObjectId,
pub raw_collider_ptr: RawPtr<*mut c_void>,
pub shape: i32,
}Expand description
Native structure; can be passed via pointer in APIs that are not exposed to GDScript.
Fields§
§rid: Rid§collider_id: ObjectId§raw_collider_ptr: RawPtr<*mut c_void>§shape: i32Implementations§
§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 unsafe fn set_collider<T>(&mut self, collider: Gd<T>)
pub unsafe fn set_collider<T>(&mut self, collider: Gd<T>)
Sets the object from a Gd pointer holding Node or a derived class.
§Safety
You must ensure that the provided object remains alive while Godot accesses it.
See also RawPtr::new().
Trait Implementations§
§impl Clone for PhysicsServer3DExtensionShapeResult
impl Clone for PhysicsServer3DExtensionShapeResult
§fn clone(&self) -> PhysicsServer3DExtensionShapeResult
fn clone(&self) -> PhysicsServer3DExtensionShapeResult
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl 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§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)