multiversx_sc::tuple_util

Trait NestedTuple

Source
pub trait NestedTuple { }
Expand description

A tuple of the form (A, (B, (… (N, ())))).

It is always terminated with a unit.

Implementations on Foreign Types§

Source§

impl NestedTuple for ()

Source§

impl<Head, Tail> NestedTuple for (Head, Tail)
where Tail: NestedTuple,

Implementors§