[][src]Struct nannou::ui::widget::graph::SessionNodes

pub struct SessionNodes<NI> where
    NI: NodeId
{ /* fields omitted */ }

The second stage of the graph's Session event.

Implementations

impl<NI> SessionNodes<NI> where
    NI: NodeId
[src]

pub fn nodes(&mut self) -> Nodes<'_, NI>

Notable traits for Nodes<'a, NI>

impl<'a, NI> Iterator for Nodes<'a, NI> where
    NI: NodeId
type Item = NodeContext<'a, NI>;
[src]

Produce an iterator yielding a NodeContext for each node present in the graph.

pub fn next(self) -> SessionEdges<NI>[src]

Transition from the SessionNodes into SessionEdges for instantiating edges.

Auto Trait Implementations

impl<NI> RefUnwindSafe for SessionNodes<NI>

impl<NI> Send for SessionNodes<NI>

impl<NI> Sync for SessionNodes<NI>

impl<NI> Unpin for SessionNodes<NI>

impl<NI> UnwindSafe for SessionNodes<NI>

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

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, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[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, 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>,