[][src]Struct embree::ray_stream::RayN

pub struct RayN { /* fields omitted */ }

A ray stream stored in SoA format

Implementations

impl RayN[src]

pub fn new(n: usize) -> RayN[src]

Allocate a new Ray stream with room for n rays

pub fn iter(&self) -> SoARayIter<'_, RayN>

Notable traits for SoARayIter<'a, T>

impl<'a, T: SoARay + 'a> Iterator for SoARayIter<'a, T> type Item = SoARayRef<'a, T>;
[src]

pub fn iter_mut(&mut self) -> SoARayIterMut<'_, RayN>

Notable traits for SoARayIterMut<'a, T>

impl<'a, T: SoARay + 'a> Iterator for SoARayIterMut<'a, T> type Item = SoARayRefMut<'a, T>;
[src]

pub fn len(&self) -> usize[src]

pub unsafe fn as_raynp(&mut self) -> RTCRayNp[src]

Trait Implementations

impl SoARay for RayN[src]

Auto Trait Implementations

impl RefUnwindSafe for RayN

impl Send for RayN

impl Sync for RayN

impl Unpin for RayN

impl UnwindSafe for RayN

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.