pub enum LineJoin {
Miter,
Bevel,
Round,
}Expand description
Line join style — how adjacent segments of a line are connected.
Variants§
Miter
Sharp corner extended along the bisector, falling back to bevel
when the miter ratio exceeds VectorStyle::miter_limit.
Bevel
Flat diagonal cut at the outer bend.
Round
Rounded arc at the outer bend.
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