IntoNodeList

Trait IntoNodeList 

Source
pub trait IntoNodeList {
    // Required method
    fn into_nodes(self) -> Vec<ElemNode>;
}
Expand description

Helper accepted by the variadic math fold helpers.

Arrays work for homogeneous inputs, while tuples are the ergonomic escape hatch for mixed Node/numeric arguments.

Required Methods§

Implementations on Foreign Types§

Source§

impl<A, B> IntoNodeList for (A, B)
where A: Into<ElemNode>, B: Into<ElemNode>,

Source§

impl<A, B, C> IntoNodeList for (A, B, C)
where A: Into<ElemNode>, B: Into<ElemNode>, C: Into<ElemNode>,

Source§

impl<A, B, C, D> IntoNodeList for (A, B, C, D)
where A: Into<ElemNode>, B: Into<ElemNode>, C: Into<ElemNode>, D: Into<ElemNode>,

Source§

impl<A, B, C, D, E> IntoNodeList for (A, B, C, D, E)
where A: Into<ElemNode>, B: Into<ElemNode>, C: Into<ElemNode>, D: Into<ElemNode>, E: Into<ElemNode>,

Source§

impl<A, B, C, D, E, F> IntoNodeList for (A, B, C, D, E, F)

Source§

impl<A, B, C, D, E, F, G> IntoNodeList for (A, B, C, D, E, F, G)

Source§

impl<A, B, C, D, E, F, G, H> IntoNodeList for (A, B, C, D, E, F, G, H)

Source§

impl<T> IntoNodeList for [T; 1]
where T: Into<ElemNode>,

Source§

impl<T> IntoNodeList for [T; 2]
where T: Into<ElemNode>,

Source§

impl<T> IntoNodeList for [T; 3]
where T: Into<ElemNode>,

Source§

impl<T> IntoNodeList for [T; 4]
where T: Into<ElemNode>,

Implementors§