pub enum LineJoin {
Miter,
Round,
Bevel,
}Expand description
Line-join style (j, /LJ; ISO 32000-1 table 53).
Variants§
Miter
Extend the outer edges until they meet, subject to the miter limit.
Round
Round off the corner with an arc.
Bevel
Cut the corner off with a straight edge.
Implementations§
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