pub enum LineJoinStyle {
MiterJoin,
RoundJoin,
BevelJoin,
}
Expand description
How to join lines at corners.
Variants§
MiterJoin
Join the lines with a sharp corner where the outsides of the lines intersect.
RoundJoin
Join the lines with a smooth circular segment.
BevelJoin
End both lines with butt caps and join them with a triangle.
Trait Implementations§
source§impl Clone for LineJoinStyle
impl Clone for LineJoinStyle
source§fn clone(&self) -> LineJoinStyle
fn clone(&self) -> LineJoinStyle
Returns a copy of the value. Read more
1.6.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for LineJoinStyle
impl Debug for LineJoinStyle
source§impl Hash for LineJoinStyle
impl Hash for LineJoinStyle
source§impl PartialEq for LineJoinStyle
impl PartialEq for LineJoinStyle
impl Copy for LineJoinStyle
impl Eq for LineJoinStyle
impl StructuralPartialEq for LineJoinStyle
Auto Trait Implementations§
impl Freeze for LineJoinStyle
impl RefUnwindSafe for LineJoinStyle
impl Send for LineJoinStyle
impl Sync for LineJoinStyle
impl Unpin for LineJoinStyle
impl UnwindSafe for LineJoinStyle
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)