Struct euc::rasterizer::Lines[][src]

pub struct Lines<'a, D> { /* fields omitted */ }

A rasterizer that produces straight lines from groups of 2 consecutive vertices.

Trait Implementations

impl<'a, D: Target<Item = f32>> Rasterizer for Lines<'a, D>[src]

type Input = [f32; 3]

The type of input required during rasterization. Read more

type Supplement = Option<&'a mut D>

The type of any supplementary data required by the rasterization algorithm. Read more

Auto Trait Implementations

impl<'a, D> RefUnwindSafe for Lines<'a, D> where
    D: RefUnwindSafe

impl<'a, D> Send for Lines<'a, D> where
    D: Sync

impl<'a, D> Sync for Lines<'a, D> where
    D: Sync

impl<'a, D> Unpin for Lines<'a, D>

impl<'a, D> UnwindSafe for Lines<'a, D> where
    D: RefUnwindSafe

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.