Struct SpatialRay
#[repr(C)]pub struct SpatialRay {
pub Origin: Vector3,
pub Direction: Vector3,
}
Fields§
§Origin: Vector3
§Direction: Vector3
Trait Implementations§
§impl Clone for SpatialRay
impl Clone for SpatialRay
§fn clone(&self) -> SpatialRay
fn clone(&self) -> SpatialRay
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for SpatialRay
impl Debug for SpatialRay
§impl Default for SpatialRay
impl Default for SpatialRay
§fn default() -> SpatialRay
fn default() -> SpatialRay
Returns the “default value” for a type. Read more
§impl PartialEq for SpatialRay
impl PartialEq for SpatialRay
impl Copy for SpatialRay
impl StructuralPartialEq for SpatialRay
Auto Trait Implementations§
impl Freeze for SpatialRay
impl RefUnwindSafe for SpatialRay
impl Send for SpatialRay
impl Sync for SpatialRay
impl Unpin for SpatialRay
impl UnwindSafe for SpatialRay
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