Trait lyon_path::builder::Build[][src]

pub trait Build {
    type PathType;
    fn build(self) -> Self::PathType;
}
Expand description

Builds a path.

This trait is separate from PathBuilder and SvgPathBuilder to allow them to be used as trait object (which isn’t possible when a method returns an associated type).

Associated Types

The type of object that is created by this builder.

Required methods

Builds a path object and resets the builder so that it can be used again.

Implementors