pub enum LineJoin {
Round,
Bevel,
Miter,
}Expand description
An enum representing the lineJoin mode. You may want to use LineStyle for a complete set of options.
§Example

Variants§
Round
The first line of the example above
Bevel
The second line of the example above
Miter
The third line of the example above
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LineJoin
impl RefUnwindSafe for LineJoin
impl Send for LineJoin
impl Sync for LineJoin
impl Unpin 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