pub enum LineCap {
Butt,
Round,
Square,
}Expand description
Determines the shape used to draw the end points of lines.
Variants§
Butt
The ends of lines are squared off at the endpoints. Default value.
Round
The ends of lines are rounded.
Square
The ends of lines are squared off by adding a box with an equal width and half the height of the line’s thickness.
Trait Implementations§
Source§impl PartialOrd for LineCap
impl PartialOrd for LineCap
impl Copy for LineCap
impl StructuralPartialEq for LineCap
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