Enum pdf_canvas::graphicsstate::JoinStyle[][src]

pub enum JoinStyle {
    Miter,
    Round,
    Bevel,
}

Line join styles, as described in section 8.4.3.4 of the PDF specification.

Variants

The outer edges continues until they meet.

The lines are joined by a circle of line-width diameter.

End the lines as with CapStyle::Butt and fill the resulting gap with a triangle.

Trait Implementations

impl Clone for JoinStyle
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for JoinStyle
[src]

impl Debug for JoinStyle
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for JoinStyle

impl Sync for JoinStyle