[][src]Struct embree::soa_ray::SoARayRefMut

pub struct SoARayRefMut<'a, T> { /* fields omitted */ }

Implementations

impl<'a, T: SoARay + 'a> SoARayRefMut<'a, T>[src]

pub fn origin(&self) -> Vector3<f32>[src]

pub fn set_origin(&mut self, o: Vector3<f32>)[src]

pub fn dir(&self) -> Vector3<f32>[src]

pub fn set_dir(&mut self, d: Vector3<f32>)[src]

pub fn tnear(&self) -> f32[src]

pub fn set_tnear(&mut self, tnear: f32)[src]

pub fn tfar(&self) -> f32[src]

pub fn set_tfar(&mut self, tfar: f32)[src]

pub fn mask(&self) -> u32[src]

pub fn set_mask(&mut self, mask: u32)[src]

pub fn id(&self) -> u32[src]

pub fn set_id(&mut self, id: u32)[src]

pub fn flags(&self) -> u32[src]

pub fn set_flags(&mut self, flags: u32)[src]

Auto Trait Implementations

impl<'a, T> RefUnwindSafe for SoARayRefMut<'a, T> where
    T: RefUnwindSafe

impl<'a, T> !Send for SoARayRefMut<'a, T>

impl<'a, T> !Sync for SoARayRefMut<'a, T>

impl<'a, T> Unpin for SoARayRefMut<'a, T>

impl<'a, T> !UnwindSafe for SoARayRefMut<'a, T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.