pub trait CfgCondExt<T: Clone> { // Required method fn transpose(self) -> Vec<(CfgCond, Vec<T>)>; }
CfgCond helper extension trait for slices.
CfgCond
Converts a sequence of T into a sequence of combinations of T for each possible condition.
T