Trait Act

Source
pub trait Act: Clone + Debug {
    // Provided method
    fn len(&self) -> usize { ... }
}
Expand description

A set of actions of the environment.

Provided Methods§

Source

fn len(&self) -> usize

Returns the number of actions in the object.

TODO: Consider to delete.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§