pub struct Span<'i> { /* private fields */ }
Expand description
A span over a &str
. It is created from either two Position
s or from a Pair
.
Implementations
sourceimpl<'i> Span<'i>
impl<'i> Span<'i>
sourcepub fn new(input: &str, start: usize, end: usize) -> Option<Span<'_>>
pub fn new(input: &str, start: usize, end: usize) -> Option<Span<'_>>
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());
sourcepub fn start(&self) -> usize
pub fn start(&self) -> usize
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);
sourcepub fn end(&self) -> usize
pub fn end(&self) -> usize
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);
sourcepub fn start_pos(&self) -> Position<'i>
pub fn start_pos(&self) -> Position<'i>
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);
sourcepub fn end_pos(&self) -> Position<'i>
pub fn end_pos(&self) -> Position<'i>
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);
sourcepub fn split(self) -> (Position<'i>, Position<'i>)
pub fn split(self) -> (Position<'i>, Position<'i>)
Splits the Span
into a pair of Position
s.
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));
sourcepub fn as_str(&self) -> &'i str
pub fn as_str(&self) -> &'i str
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");
sourcepub fn lines(&self) -> Lines<'_>ⓘNotable traits for Lines<'i>impl<'i> Iterator for Lines<'i> type Item = &'i str;
pub fn lines(&self) -> Lines<'_>ⓘNotable traits for Lines<'i>impl<'i> Iterator for Lines<'i> type Item = &'i str;
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>
Auto Trait Implementations
impl<'i> RefUnwindSafe for Span<'i>
impl<'i> Send for Span<'i>
impl<'i> Sync for Span<'i>
impl<'i> Unpin for Span<'i>
impl<'i> UnwindSafe for Span<'i>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more