Struct pest::Position [−][src]
pub struct Position<'i> { /* fields omitted */ }
A cursor position in a &str
which provides useful methods to manually parse that string.
Implementations
impl<'i> Position<'i>
[src]
impl<'i> Position<'i>
[src]pub fn new(input: &str, pos: usize) -> Option<Position<'_>>
[src]
Attempts to create a new Position
at the given position. If the specified position is
an invalid index, or the specified position is not a valid UTF8 boundary, then None is
returned.
Examples
let cheart = '💖'; let heart = "💖"; assert_eq!(Position::new(heart, 1), None); assert_ne!(Position::new(heart, cheart.len_utf8()), None);
pub fn from_start(input: &'i str) -> Position<'i>
[src]
Creates a Position
at the start of a &str
.
Examples
let start = Position::from_start(""); assert_eq!(start.pos(), 0);
pub fn pos(&self) -> usize
[src]
Returns the byte position of this Position
as a usize
.
Examples
let input = "ab"; let mut start = Position::from_start(input); assert_eq!(start.pos(), 0);
pub fn span(&self, other: &Position<'i>) -> Span<'i>
[src]
Creates a Span
from two Position
s.
Panics
Panics if the positions come from different inputs.
Examples
let input = "ab"; let start = Position::from_start(input); let span = start.span(&start.clone()); assert_eq!(span.start(), 0); assert_eq!(span.end(), 0);
pub fn line_col(&self) -> (usize, usize)
[src]
Returns the line and column number of this Position
.
Examples
enum Rule {} let input = "\na"; let mut state: Box<pest::ParserState<Rule>> = pest::ParserState::new(input); let mut result = state.match_string("\na"); assert!(result.is_ok()); assert_eq!(result.unwrap().position().line_col(), (2, 2));
pub fn line_of(&self) -> &'i str
[src]
Returns the entire line of the input that contains this Position
.
Examples
enum Rule {} let input = "\na"; let mut state: Box<pest::ParserState<Rule>> = pest::ParserState::new(input); let mut result = state.match_string("\na"); assert!(result.is_ok()); assert_eq!(result.unwrap().position().line_of(), "a");
Trait Implementations
impl<'i> PartialOrd<Position<'i>> for Position<'i>
[src]
impl<'i> PartialOrd<Position<'i>> for Position<'i>
[src]fn partial_cmp(&self, other: &Position<'i>) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn lt(&self, other: &Rhs) -> bool#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn le(&self, other: &Rhs) -> bool#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn gt(&self, other: &Rhs) -> bool#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn ge(&self, other: &Rhs) -> bool