[][src]Struct lyon_tessellation::StrokeBuilder

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 new(
    options: &StrokeOptions,
    attrib_store: &'l dyn AttributeStore,
    attrib_buffer: &'l mut [f32],
    builder: &'l mut dyn StrokeGeometryBuilder
) -> Self
[src]

pub fn set_options(&mut self, options: &StrokeOptions)[src]

Trait Implementations

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

type PathType = Result<(), GeometryBuilderError>

The type of object that is created by this builder.

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

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

Auto Trait Implementations

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

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

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

impl<'l> Unpin for StrokeBuilder<'l>

impl<'l> !UnwindSafe for StrokeBuilder<'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.