Enum nannou::ui::widget::graph::Event[][src]

pub enum Event<NI> {
    Node(NodeEvent<NI>),
    Edge(EdgeEvent<NI>),
}

An interaction has caused some event to occur.

Variants

Events associated with nodes.

Events associated with edges.

Trait Implementations

impl<NI> Clone for Event<NI> where
    NI: Clone
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<NI> Debug for Event<NI> where
    NI: Debug
[src]

Formats the value using the given formatter. Read more

impl<NI> PartialEq<Event<NI>> for Event<NI> where
    NI: PartialEq<NI>, 
[src]

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

This method tests for !=.

Auto Trait Implementations

impl<NI> Send for Event<NI> where
    NI: Send

impl<NI> Sync for Event<NI> where
    NI: Sync