Enum graphviz::Style [] [src]

pub enum Style {
    None,
    Solid,
    Dashed,
    Dotted,
    Bold,
    Rounded,
    Diagonals,
    Filled,
    Striped,
    Wedged,
}
Unstable (rustc_private)

The style for a node or edge. See http://www.graphviz.org/doc/info/attrs.html#k:style for descriptions. Note that some of these are not valid for edges.

Variants

None
Unstable (rustc_private)
Solid
Unstable (rustc_private)
Dashed
Unstable (rustc_private)
Dotted
Unstable (rustc_private)
Bold
Unstable (rustc_private)
Rounded
Unstable (rustc_private)
Diagonals
Unstable (rustc_private)
Filled
Unstable (rustc_private)
Striped
Unstable (rustc_private)
Wedged
Unstable (rustc_private)

Methods

impl Style
[src]

fn as_slice(self) -> &'static str

Trait Implementations

Derived Implementations

impl Debug for Style
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Eq for Style
[src]

impl PartialEq for Style
[src]

fn eq(&self, __arg_0: &Style) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Clone for Style
[src]

fn clone(&self) -> Style

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for Style
[src]