pub trait LineCapStyleExt {
const Butt: LineCapStyle = LineCapStyle::kLineCapStyleButt;
const Square: LineCapStyle = LineCapStyle::kLineCapStyleSquare;
const Round: LineCapStyle = LineCapStyle::kLineCapStyleRound;
}Provided Associated Constants§
const Butt: LineCapStyle = LineCapStyle::kLineCapStyleButt
const Square: LineCapStyle = LineCapStyle::kLineCapStyleSquare
const Round: LineCapStyle = LineCapStyle::kLineCapStyleRound
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.