pub enum LineCap {
Butt,
Square,
Round,
}Available on crate feature
canvas only.Expand description
The shape used at the end of open subpaths when they are stroked.
Variants§
Butt
The stroke for each sub-path does not extend beyond its two endpoints.
Square
At the end of each sub-path, the shape representing the stroke will be extended by a square.
Round
At the end of each sub-path, the shape representing the stroke will be extended by a semicircle.
Trait Implementations§
impl Copy 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 UnsafeUnpin 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