#[repr(C)]pub struct bhkSerializable {
pub __base: bhkRefObject,
pub serializable: *mut bhkSerializable,
}
Expand description
Represents a serializable object in the physics world.
Inherits from bhkRefObject
.
§Memory Layout:
__base
: Base classbhkRefObject
serializable
: Pointer to anotherbhkSerializable
Fields§
§__base: bhkRefObject
Base class bhkRefObject
.
serializable: *mut bhkSerializable
Pointer to another bhkSerializable
.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for bhkSerializable
impl RefUnwindSafe for bhkSerializable
impl !Send for bhkSerializable
impl !Sync for bhkSerializable
impl Unpin for bhkSerializable
impl UnwindSafe for bhkSerializable
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