pub trait FieldReader {
// Required method
fn read(&self, field: FieldId) -> Option<&[f32]>;
}Expand description
Read-only access to field data within a simulation step.
Implemented by arena types to provide propagators with read access
to field buffers. Returns None if the field is not readable in
the current context.