#[repr(u8)]pub enum LineJoinStyle {
Miter = 0,
Round = 1,
Bevel = 2,
}Expand description
Line join style (PDF spec Table 55).
Specifies the shape to be used at corners of stroked paths.
Variants§
Miter = 0
Miter join: outer edges extended to meet at a point.
Round = 1
Round join: circular arc between outer edges.
Bevel = 2
Bevel join: straight line between outer edges.
Implementations§
Trait Implementations§
Source§impl Clone for LineJoinStyle
impl Clone for LineJoinStyle
Source§fn clone(&self) -> LineJoinStyle
fn clone(&self) -> LineJoinStyle
Returns a duplicate of the value. Read more
1.0.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 Default for LineJoinStyle
impl Default for LineJoinStyle
Source§fn default() -> LineJoinStyle
fn default() -> LineJoinStyle
Returns the “default value” for a type. Read more
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 UnsafeUnpin 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