[][src]Struct lyon_algorithms::walk::PathWalker

pub struct PathWalker<'l> { /* fields omitted */ }

A helper struct to walk along a flattened path using a builder API.

Implementations

impl<'l> PathWalker<'l>[src]

pub fn new(start: f32, pattern: &'l mut dyn Pattern) -> PathWalker<'l>[src]

Trait Implementations

impl<'l> FlatPathBuilder for PathWalker<'l>[src]

impl<'l> PathBuilder for PathWalker<'l>[src]

impl<'l> PolygonBuilder for PathWalker<'l>[src]

fn polygon(&mut self, points: &[Point])[src]

Add a closed polygon.

Auto Trait Implementations

impl<'l> !RefUnwindSafe for PathWalker<'l>

impl<'l> !Send for PathWalker<'l>

impl<'l> !Sync for PathWalker<'l>

impl<'l> Unpin for PathWalker<'l>

impl<'l> !UnwindSafe for PathWalker<'l>

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.