pub trait Act: Clone + Debug { // Provided method fn len(&self) -> usize { ... } }
A set of actions of the environment.
Returns the number of actions in the object.
TODO: Consider to delete.