pub struct AxisAlignedBounds {
pub min: [f64; 3],
pub max: [f64; 3],
}Fields§
§min: [f64; 3]§max: [f64; 3]Trait Implementations§
Source§impl Clone for AxisAlignedBounds
impl Clone for AxisAlignedBounds
Source§fn clone(&self) -> AxisAlignedBounds
fn clone(&self) -> AxisAlignedBounds
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 AxisAlignedBounds
impl Debug for AxisAlignedBounds
Source§impl<'de> Deserialize<'de> for AxisAlignedBounds
impl<'de> Deserialize<'de> for AxisAlignedBounds
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AxisAlignedBounds
impl PartialEq for AxisAlignedBounds
Source§fn eq(&self, other: &AxisAlignedBounds) -> bool
fn eq(&self, other: &AxisAlignedBounds) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AxisAlignedBounds
impl Serialize for AxisAlignedBounds
impl StructuralPartialEq for AxisAlignedBounds
Auto Trait Implementations§
impl Freeze for AxisAlignedBounds
impl RefUnwindSafe for AxisAlignedBounds
impl Send for AxisAlignedBounds
impl Sync for AxisAlignedBounds
impl Unpin for AxisAlignedBounds
impl UnsafeUnpin for AxisAlignedBounds
impl UnwindSafe for AxisAlignedBounds
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