pub trait ValueFunction {
type Tensor: Clone;
// Required method
fn values(&self, observations: &[Self::Tensor]) -> Result<Self::Tensor>;
}Expand description
Batched value-function interface.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".