pub struct RecordBounds3 {
pub min: [f64; 3],
pub max: [f64; 3],
}Expand description
Finite axis-aligned bounds carried by a record chunk.
Fields§
§min: [f64; 3]Inclusive minimum XYZ coordinates.
max: [f64; 3]Inclusive maximum XYZ coordinates.
Implementations§
Source§impl RecordBounds3
impl RecordBounds3
Trait Implementations§
Source§impl Clone for RecordBounds3
impl Clone for RecordBounds3
Source§fn clone(&self) -> RecordBounds3
fn clone(&self) -> RecordBounds3
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 moreSource§impl Debug for RecordBounds3
impl Debug for RecordBounds3
Source§impl PartialEq for RecordBounds3
impl PartialEq for RecordBounds3
Source§fn eq(&self, other: &RecordBounds3) -> bool
fn eq(&self, other: &RecordBounds3) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for RecordBounds3
impl StructuralPartialEq for RecordBounds3
Auto Trait Implementations§
impl Freeze for RecordBounds3
impl RefUnwindSafe for RecordBounds3
impl Send for RecordBounds3
impl Sync for RecordBounds3
impl Unpin for RecordBounds3
impl UnsafeUnpin for RecordBounds3
impl UnwindSafe for RecordBounds3
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