pub enum LineCap {
Butt,
Round,
Square,
}Expand description
An enum representing a lineCap mode. You may want to use LineStyle for a complete set of options.
§Example

Variants§
Butt
The first line of the example above
Round
The second line of the example above
Square
The third line of the example above
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LineCap
impl RefUnwindSafe for LineCap
impl Send for LineCap
impl Sync for LineCap
impl Unpin for LineCap
impl UnwindSafe for LineCap
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more