pub enum StrokeLinejoin {
Arcs,
Bevel,
Miter,
MiterClip,
Round,
}
Expand description
The stroke-linejoin attribute is a presentation attribute defining the shape to be used at the corners of paths when they are stroked.
arcs | bevel |miter | miter-clip | round
Variants§
Trait Implementations§
Source§impl Clone for StrokeLinejoin
impl Clone for StrokeLinejoin
Source§fn clone(&self) -> StrokeLinejoin
fn clone(&self) -> StrokeLinejoin
Returns a copy 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 StrokeLinejoin
impl Debug for StrokeLinejoin
Source§impl Default for StrokeLinejoin
impl Default for StrokeLinejoin
Source§fn default() -> StrokeLinejoin
fn default() -> StrokeLinejoin
Returns the “default value” for a type. Read more
Source§impl Display for StrokeLinejoin
impl Display for StrokeLinejoin
Source§impl Ord for StrokeLinejoin
impl Ord for StrokeLinejoin
Source§fn cmp(&self, other: &StrokeLinejoin) -> Ordering
fn cmp(&self, other: &StrokeLinejoin) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StrokeLinejoin
impl PartialEq for StrokeLinejoin
Source§impl PartialOrd for StrokeLinejoin
impl PartialOrd for StrokeLinejoin
impl Copy for StrokeLinejoin
impl Eq for StrokeLinejoin
impl StructuralPartialEq for StrokeLinejoin
Auto Trait Implementations§
impl Freeze for StrokeLinejoin
impl RefUnwindSafe for StrokeLinejoin
impl Send for StrokeLinejoin
impl Sync for StrokeLinejoin
impl Unpin for StrokeLinejoin
impl UnwindSafe for StrokeLinejoin
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