[][src]Enum iced::widget::canvas::LineJoin

pub enum LineJoin {
    Miter,
    Round,
    Bevel,
}
This is supported on feature="canvas" only.

The shape used at the corners of paths or basic shapes when they are stroked.

Variants

Miter
This is supported on feature="canvas" only.

A sharp corner.

Round
This is supported on feature="canvas" only.

A round corner.

Bevel
This is supported on feature="canvas" only.

A bevelled corner.

Trait Implementations

impl Clone for LineJoin[src]

impl Copy for LineJoin[src]

impl Debug for LineJoin[src]

impl Default for LineJoin[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SetParameter for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,