Trait xml::common::Position
[−]
[src]
pub trait Position { fn position(&self) -> TextPosition; }
Get the position in the document corresponding to the object
This trait is implemented by parsers, lexers and errors.
Required Methods
fn position(&self) -> TextPosition
Returns the current position or a position corresponding to the object.
Implementors
impl Position for TextPosition
impl Position for Error
impl<B: Read> Position for EventReader<B>