pub trait NestedTupleAppend<T> {
type Output;
// Required method
fn append(self, t: T) -> Self::Output;
}Expand description
Allows to append at the end of a nested tuple list.
pub trait NestedTupleAppend<T> {
type Output;
// Required method
fn append(self, t: T) -> Self::Output;
}Allows to append at the end of a nested tuple list.