#[repr(C)]pub struct hkUFloat8 {
pub value: u8,
}
Expand description
Represents an 8-bit unsigned float in the Havok system.
This is an index into a lookup table for values ranging from 0.01 to 1,000,000.0.
§Memory Layout:
value
: 8-bit unsigned integer (0x00)
Fields§
§value: u8
The 8-bit index into a lookup table.
- Offset: 0x00
Trait Implementations§
impl Copy for hkUFloat8
impl StructuralPartialEq for hkUFloat8
Auto Trait Implementations§
impl Freeze for hkUFloat8
impl RefUnwindSafe for hkUFloat8
impl Send for hkUFloat8
impl Sync for hkUFloat8
impl Unpin for hkUFloat8
impl UnwindSafe for hkUFloat8
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