pub enum LineJoin {
Round,
Bevel,
Miter {
limit_1000ths_percent: Option<i64>,
},
}Expand description
EG_LineJoinProperties — how a stroke’s corners are drawn.
Variants§
Round
Bevel
Miter
<a:miter lim=".."> — lim is the miter limit, in thousandths of a percent
(ST_PositivePercentage).
Trait Implementations§
impl Copy 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