[][src]Struct pest_tmp::Span

pub struct Span<'i> { /* fields omitted */ }

A span over a &str. It is created from either two Positions or from a Pair.

Methods

impl<'i> Span<'i>[src]

pub fn new(input: &str, start: usize, end: usize) -> Option<Span>[src]

Attempts to create a new span. Will return None if input[start..end] is an invalid index into input.

Examples

let input = "Hello!";
assert_eq!(None, Span::new(input, 100, 0));
assert!(Span::new(input, 0, input.len()).is_some());

pub fn start(&self) -> usize[src]

Returns the Span's start byte position as a usize.

Examples

let input = "ab";
let start = Position::from_start(input);
let end = start.clone();
let span = start.span(&end);

assert_eq!(span.start(), 0);

pub fn end(&self) -> usize[src]

Returns the Span's end byte position as a usize.

Examples

let input = "ab";
let start = Position::from_start(input);
let end = start.clone();
let span = start.span(&end);

assert_eq!(span.end(), 0);

pub fn start_pos(&self) -> Position<'i>[src]

Returns the Span's start Position.

Examples

let input = "ab";
let start = Position::from_start(input);
let end = start.clone();
let span = start.clone().span(&end);

assert_eq!(span.start_pos(), start);

pub fn end_pos(&self) -> Position<'i>[src]

Returns the Span's end Position.

Examples

let input = "ab";
let start = Position::from_start(input);
let end = start.clone();
let span = start.span(&end);

assert_eq!(span.end_pos(), end);

pub fn split(self) -> (Position<'i>, Position<'i>)[src]

Splits the Span into a pair of Positions.

Examples

let input = "ab";
let start = Position::from_start(input);
let end = start.clone();
let span = start.clone().span(&end);

assert_eq!(span.split(), (start, end));

pub fn as_str(&self) -> &'i str[src]

Captures a slice from the &str defined by the Span.

Examples

enum Rule {}

let input = "abc";
let mut state: Box<pest::ParserState<Rule>> = pest::ParserState::new(input).skip(1).unwrap();
let start_pos = state.position().clone();
state = state.match_string("b").unwrap();
let span = start_pos.span(&state.position().clone());
assert_eq!(span.as_str(), "b");

Important traits for Lines<'i>
pub fn lines(&self) -> Lines[src]

Iterates over all lines (partially) covered by this span.

Examples

enum Rule {}

let input = "a\nb\nc";
let mut state: Box<pest::ParserState<Rule>> = pest::ParserState::new(input).skip(2).unwrap();
let start_pos = state.position().clone();
state = state.match_string("b\nc").unwrap();
let span = start_pos.span(&state.position().clone());
assert_eq!(span.lines().collect::<Vec<_>>(), vec!["b\n", "c"]);

Trait Implementations

impl<'i> Eq for Span<'i>[src]

impl<'i> Clone for Span<'i>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'i> PartialEq<Span<'i>> for Span<'i>[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl<'i> Debug for Span<'i>[src]

impl<'i> Hash for Span<'i>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl<'i> Send for Span<'i>

impl<'i> Sync for Span<'i>

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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