pub trait TensorStorageRef { // Required method fn buffer(&self) -> &[f64]; }
Reference to underlying buffer for tensor storage. This is only gaurenteed to be >= the most recent call to length.
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".