pub struct RawRow {
pub x: u16,
pub y: u16,
pub t: f64,
pub p: bool,
}Expand description
One parsed row before unit conversion / bounds filtering. The inference path needs
the raw timestamp (to detect the unit), so it can’t go through TextReader.
Also the input to load_rows, the in-memory (from_numpy) loader.
Fields§
§x: u16§y: u16§t: f64§p: boolAuto Trait Implementations§
impl Freeze for RawRow
impl RefUnwindSafe for RawRow
impl Send for RawRow
impl Sync for RawRow
impl Unpin for RawRow
impl UnsafeUnpin for RawRow
impl UnwindSafe for RawRow
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more