#[repr(C)]pub enum SvgLineJoin {
Miter = 0,
MiterClip = 1,
Round = 2,
Bevel = 3,
}Expand description
The shape used at the corners of stroked paths.
Variants§
Trait Implementations§
Source§impl Clone for SvgLineJoin
impl Clone for SvgLineJoin
Source§fn clone(&self) -> SvgLineJoin
fn clone(&self) -> SvgLineJoin
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SvgLineJoin
impl Debug for SvgLineJoin
Source§impl Default for SvgLineJoin
impl Default for SvgLineJoin
Source§impl Hash for SvgLineJoin
impl Hash for SvgLineJoin
Source§impl Ord for SvgLineJoin
impl Ord for SvgLineJoin
Source§fn cmp(&self, other: &SvgLineJoin) -> Ordering
fn cmp(&self, other: &SvgLineJoin) -> Ordering
1.21.0 (const: unstable) · 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 SvgLineJoin
impl PartialEq for SvgLineJoin
Source§fn eq(&self, other: &SvgLineJoin) -> bool
fn eq(&self, other: &SvgLineJoin) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SvgLineJoin
impl PartialOrd for SvgLineJoin
impl Copy for SvgLineJoin
impl Eq for SvgLineJoin
impl StructuralPartialEq for SvgLineJoin
Auto Trait Implementations§
impl Freeze for SvgLineJoin
impl RefUnwindSafe for SvgLineJoin
impl Send for SvgLineJoin
impl Sync for SvgLineJoin
impl Unpin for SvgLineJoin
impl UnsafeUnpin for SvgLineJoin
impl UnwindSafe for SvgLineJoin
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