pub trait CommandTuple {
    fn foreach_cmd<F: FnMut(&dyn CommandBase)>(&self, f: &mut F);
    fn len(&self) -> usize;

    fn is_empty(&self) -> bool { ... }
}

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors