[][src]Struct csv::Position

pub struct Position { /* fields omitted */ }

A position in CSV data.

A position is used to report errors in CSV data. All positions include the byte offset, line number and record index at which the error occurred.

Byte offsets and record indices start at 0. Line numbers start at 1.

A CSV reader will automatically assign the position of each record.

Methods

impl Position[src]

pub fn new() -> Position[src]

Returns a new position initialized to the start value.

pub fn byte(&self) -> u64[src]

The byte offset, starting at 0, of this position.

pub fn line(&self) -> u64[src]

The line number, starting at 1, of this position.

pub fn record(&self) -> u64[src]

The record index, starting with the first record at 0.

pub fn set_byte(&mut self, byte: u64) -> &mut Position[src]

Set the byte offset of this position.

pub fn set_line(&mut self, line: u64) -> &mut Position[src]

Set the line number of this position.

If the line number is less than 1, then this method panics.

pub fn set_record(&mut self, record: u64) -> &mut Position[src]

Set the record index of this position.

Trait Implementations

impl Clone for Position[src]

impl Debug for Position[src]

impl Eq for Position[src]

impl PartialEq<Position> for Position[src]

impl StructuralEq for Position[src]

impl StructuralPartialEq for Position[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.