Struct PhysicsServer2DExtensionShapeResult
#[repr(C)]pub struct PhysicsServer2DExtensionShapeResult {
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 PhysicsServer2DExtensionShapeResult
impl PhysicsServer2DExtensionShapeResult
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 PhysicsServer2DExtensionShapeResult
impl Clone for PhysicsServer2DExtensionShapeResult
§fn clone(&self) -> PhysicsServer2DExtensionShapeResult
fn clone(&self) -> PhysicsServer2DExtensionShapeResult
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 PhysicsServer2DExtensionShapeResult
impl PartialEq for PhysicsServer2DExtensionShapeResult
§fn eq(&self, other: &PhysicsServer2DExtensionShapeResult) -> bool
fn eq(&self, other: &PhysicsServer2DExtensionShapeResult) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PhysicsServer2DExtensionShapeResult
Auto Trait Implementations§
impl Freeze for PhysicsServer2DExtensionShapeResult
impl RefUnwindSafe for PhysicsServer2DExtensionShapeResult
impl !Send for PhysicsServer2DExtensionShapeResult
impl !Sync for PhysicsServer2DExtensionShapeResult
impl Unpin for PhysicsServer2DExtensionShapeResult
impl UnwindSafe for PhysicsServer2DExtensionShapeResult
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