pub enum LineJoin {
Miter,
Bevel,
Round,
}Expand description
The style used to join two path segments at a corner.
Variants§
Miter
A sharp miter join (clipped at StrokeStyle::miter_limit).
Bevel
A flat bevel cut across the outside corner.
Round
A circular arc centered at the corner point.
Trait Implementations§
impl Copy for LineJoin
impl Eq for LineJoin
impl StructuralPartialEq for LineJoin
Auto Trait Implementations§
impl Freeze for LineJoin
impl RefUnwindSafe for LineJoin
impl Send for LineJoin
impl Sync for LineJoin
impl Unpin for LineJoin
impl UnsafeUnpin for LineJoin
impl UnwindSafe for LineJoin
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