Struct lyon_tessellation::StrokeBuilder[][src]

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

A builder that tessellates a stroke directly without allocating any intermediate data structure.

Implementations

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

pub fn set_line_join(&mut self, join: LineJoin)[src]

pub fn set_start_cap(&mut self, cap: LineCap)[src]

pub fn set_end_cap(&mut self, cap: LineCap)[src]

pub fn set_miter_limit(&mut self, limit: f32)[src]

Trait Implementations

impl<'l> Build for StrokeBuilder<'l>[src]

type PathType = TessellationResult

The type of object that is created by this builder.

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

Auto Trait Implementations

impl<'l> !RefUnwindSafe for StrokeBuilder<'l>[src]

impl<'l> !Send for StrokeBuilder<'l>[src]

impl<'l> !Sync for StrokeBuilder<'l>[src]

impl<'l> Unpin for StrokeBuilder<'l>[src]

impl<'l> !UnwindSafe for StrokeBuilder<'l>[src]

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.