pub trait Act: Clone + Debug {
    fn len(&self) -> usize;
}
Expand description

A set of actions of the environment.

Required methods

Returns the number of actions in the object.

Implementors