pub struct CSVCoords {
pub row: usize,
pub column: usize,
}
Expand description
A simple data structure for identifying the position of a cell within a CSV file.
Fields§
§row: usize
§column: usize
Trait Implementations§
impl StructuralPartialEq for CSVCoords
Auto Trait Implementations§
impl Freeze for CSVCoords
impl RefUnwindSafe for CSVCoords
impl Send for CSVCoords
impl Sync for CSVCoords
impl Unpin for CSVCoords
impl UnwindSafe for CSVCoords
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