Enum conrod::graph::Node[][src]

pub enum Node {
    Widget(Container),
    Placeholder,
}

A node for use within the Graph.

Variants

A widget constructed by a user.

A placeholder node - used when reserving a place for a Widget within the Graph.

It may also be used to represent a node that was once pre-occuppied by a widget who was not set during the last set_widgets stage.

Methods

impl Node
[src]

Whether or not the Node is of the Widget variant.

Trait Implementations

impl Debug for Node
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Node

impl !Sync for Node