pub enum LineCap {
Butt,
Round,
Square,
}Expand description
How an open path’s endpoints are drawn.
Variants§
Butt
Squared-off end flush with the endpoint. SVG / PDF default.
Round
Semicircular end of radius width / 2 centered on the endpoint.
Square
Squared-off end extending width / 2 past the endpoint.
Trait Implementations§
impl Copy for LineCap
impl Eq 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 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