[][src]Struct lyon_path::commands::PathCommandsBuilder

pub struct PathCommandsBuilder { /* fields omitted */ }

Builds path commands.

See PathCommands.

Methods

impl PathCommandsBuilder[src]

pub fn new() -> Self[src]

Creates a builder without allocating memory.

pub fn with_capacity(cap: usize) -> Self[src]

Creates a pre-allocated builder.

pub fn move_to(&mut self, to: EndpointId) -> EventId[src]

pub fn line_to(&mut self, to: EndpointId) -> EventId[src]

pub fn quadratic_bezier_to(
    &mut self,
    ctrl: ControlPointId,
    to: EndpointId
) -> EventId
[src]

pub fn cubic_bezier_to(
    &mut self,
    ctrl1: ControlPointId,
    ctrl2: ControlPointId,
    to: EndpointId
) -> EventId
[src]

pub fn close(&mut self) -> EventId[src]

pub fn build(self) -> PathCommands[src]

Consumes the builder and returns path commands.

Trait Implementations

impl Clone for PathCommandsBuilder[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.