Struct calc_graph::Func5[][src]

pub struct Func5<C1, C2, C3, C4, C5, T, F> { /* fields omitted */ }

Calculates a value from 5 nodes.

Trait Implementations

impl<C1: Calc, C2: Calc, C3: Calc, C4: Calc, C5: Calc, T: Clone + PartialEq, F: FnMut(C1::Value, C2::Value, C3::Value, C4::Value, C5::Value) -> T> Calc for Func5<C1, C2, C3, C4, C5, T, F>
[src]

The type of values calculated by the node.

Returns the value held within the node and the version number of the inputs used to calcuate that value. The value is recalculated if needed. Read more

When this node is used as a precedent, add_dep is called by dependent nodes when they are created. Read more

Auto Trait Implementations

impl<C1, C2, C3, C4, C5, T, F> Send for Func5<C1, C2, C3, C4, C5, T, F> where
    C1: Send,
    C2: Send,
    C3: Send,
    C4: Send,
    C5: Send,
    F: Send,
    T: Send

impl<C1, C2, C3, C4, C5, T, F> Sync for Func5<C1, C2, C3, C4, C5, T, F> where
    C1: Sync,
    C2: Sync,
    C3: Sync,
    C4: Sync,
    C5: Sync,
    F: Sync,
    T: Sync