pub trait LineCapStyleExt {
    const Butt: LineCapStyle = LineCapStyle::kLineCapStyleButt;
    const Square: LineCapStyle = LineCapStyle::kLineCapStyleSquare;
    const Round: LineCapStyle = LineCapStyle::kLineCapStyleRound;
}

Provided Associated Constants§

source

const Butt: LineCapStyle = LineCapStyle::kLineCapStyleButt

source

const Square: LineCapStyle = LineCapStyle::kLineCapStyleSquare

source

const Round: LineCapStyle = LineCapStyle::kLineCapStyleRound

Object Safety§

This trait is not object safe.

Implementors§