#[repr(C)]pub struct AabbRecord {
pub min: [f32; 3],
pub _pad0: f32,
pub max: [f32; 3],
pub _pad1: f32,
}Fields§
§min: [f32; 3]§_pad0: f32§max: [f32; 3]§_pad1: f32Trait Implementations§
Source§impl Clone for AabbRecord
impl Clone for AabbRecord
Source§fn clone(&self) -> AabbRecord
fn clone(&self) -> AabbRecord
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 AabbRecord
Source§impl Debug for AabbRecord
impl Debug for AabbRecord
Source§impl PartialEq for AabbRecord
impl PartialEq for AabbRecord
impl Pod for AabbRecord
Source§impl StreamRecord for AabbRecord
impl StreamRecord for AabbRecord
impl StructuralPartialEq for AabbRecord
Auto Trait Implementations§
impl Freeze for AabbRecord
impl RefUnwindSafe for AabbRecord
impl Send for AabbRecord
impl Sync for AabbRecord
impl Unpin for AabbRecord
impl UnsafeUnpin for AabbRecord
impl UnwindSafe for AabbRecord
Blanket Implementations§
impl<T> AnyBitPattern for Twhere
T: Pod,
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
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.