pub struct PxExtendedVec3 { /* private fields */ }Trait Implementations§
Source§impl Class<PxExtendedVec3> for PxExtendedVec3
impl Class<PxExtendedVec3> for PxExtendedVec3
Source§fn as_ptr(&self) -> *const PxExtendedVec3
fn as_ptr(&self) -> *const PxExtendedVec3
Returns a raw const pointer to the wrapped type.
Retrieving a raw pointer is safe. However, pretty much any use of a raw pointer is unsafe.
In particular: this pointer should not be used to construct a second owning wrapper around the pointer.
Source§fn as_mut_ptr(&mut self) -> *mut PxExtendedVec3
fn as_mut_ptr(&mut self) -> *mut PxExtendedVec3
Returns a raw mut pointer to the wrapped type.
Retrieving a raw pointer is safe. However, pretty much any use of a raw pointer is unsafe.
In particular: this pointer should not be used to construct a second owning wrapper around the pointer.
Source§impl Clone for PxExtendedVec3
impl Clone for PxExtendedVec3
Source§fn clone(&self) -> PxExtendedVec3
fn clone(&self) -> PxExtendedVec3
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 PxExtendedVec3
Source§impl From<PxExtendedVec3> for PxExtendedVec3
impl From<PxExtendedVec3> for PxExtendedVec3
Source§fn from(bounds: PxExtendedVec3) -> Self
fn from(bounds: PxExtendedVec3) -> Self
Converts to this type from the input type.
Source§impl From<PxExtendedVec3> for PxExtendedVec3
impl From<PxExtendedVec3> for PxExtendedVec3
Source§fn from(value: PxExtendedVec3) -> Self
fn from(value: PxExtendedVec3) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PxExtendedVec3
impl RefUnwindSafe for PxExtendedVec3
impl Send for PxExtendedVec3
impl Sync for PxExtendedVec3
impl Unpin for PxExtendedVec3
impl UnsafeUnpin for PxExtendedVec3
impl UnwindSafe for PxExtendedVec3
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