pub trait TessellationOptions {
type Tessellator;
// Required method
fn into_options(self) -> Options;
}
Expand description
A set of path tessellation options (FillOptions or StrokeOptions).
Required Associated Types§
sourcetype Tessellator
type Tessellator
The tessellator for which the options are built.
Required Methods§
sourcefn into_options(self) -> Options
fn into_options(self) -> Options
Convert the typed options instance to a dynamic one.