Struct rtbvh::BvhPacketIterator[][src]

pub struct BvhPacketIterator<'a, 'b, T: 'a + Primitive> { /* fields omitted */ }

Implementations

impl<'a, 'b, T: 'a + Primitive> BvhPacketIterator<'a, 'b, T>[src]

pub fn new(ray: &'b mut RayPacket4, bvh: &'a Bvh, primitives: &'a [T]) -> Self[src]

Trait Implementations

impl<'a, 'b, T: Debug + 'a + Primitive> Debug for BvhPacketIterator<'a, 'b, T>[src]

impl<'a, 'b, T: 'a + Primitive> Iterator for BvhPacketIterator<'a, 'b, T>[src]

type Item = (&'a T, &'b mut RayPacket4)

The type of the elements being iterated over.

impl<'a, 'b, T: 'a + Primitive> PacketIterator<'a, 'b, T> for BvhPacketIterator<'a, 'b, T>[src]

Auto Trait Implementations

impl<'a, 'b, T> RefUnwindSafe for BvhPacketIterator<'a, 'b, T> where
    T: RefUnwindSafe

impl<'a, 'b, T> Send for BvhPacketIterator<'a, 'b, T>

impl<'a, 'b, T> Sync for BvhPacketIterator<'a, 'b, T>

impl<'a, 'b, T> Unpin for BvhPacketIterator<'a, 'b, T>

impl<'a, 'b, T> !UnwindSafe for BvhPacketIterator<'a, 'b, 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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> Pointable for T

type Init = T

The type for initializers.

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.