pub enum JoinStyle {
Miter,
Round,
Bevel,
}
Expand description
Line join styles, as described in section 8.4.3.4 of the PDF specification.
Variants§
Miter
The outer edges continues until they meet.
Round
The lines are joined by a circle of line-width diameter.
Bevel
End the lines as with CapStyle::Butt
and fill the resulting
gap with a triangle.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JoinStyle
impl RefUnwindSafe for JoinStyle
impl Send for JoinStyle
impl Sync for JoinStyle
impl Unpin for JoinStyle
impl UnwindSafe for JoinStyle
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