pub trait TimeArray<T>: TimeInterval<T> {
// Required methods
fn time_view(&self) -> &[f64];
fn intensity_view(&self) -> &[f32];
}Expand description
An expansion of TimeInterval which provides a contiguous slice over the time dimension
Required Methods§
Sourcefn intensity_view(&self) -> &[f32]
fn intensity_view(&self) -> &[f32]
A slice over the complete intensity dimension
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.