Enum dotavious::attributes::Splines[][src]

pub enum Splines {
    Line,
    Spline,
    None,
    Curved,
    Polyline,
    Ortho,
}

Spline, edges are drawn as splines routed around nodes Line, edges are drawn as line segments Polygon, specifies that edges should be drawn as polylines. Ortho, specifies edges should be routed as polylines of axis-aligned segments. Curved, specifies edges should be drawn as curved arcs. splines=line and splines=spline can be used as synonyms for splines=false and splines=true, respectively.

Variants

Line
Spline
None
Curved
Polyline
Ortho

Trait Implementations

impl<'a> DotString<'a> for Splines[src]

impl<'a> From<Splines> for AttributeText<'a>[src]

Auto Trait Implementations

impl RefUnwindSafe for Splines

impl Send for Splines

impl Sync for Splines

impl Unpin for Splines

impl UnwindSafe for Splines

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, 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.