Trait jsonc_parser::common::Ranged [−][src]
pub trait Ranged {
fn range(&self) -> &Range;
fn start(&self) -> usize { ... }
fn start_line(&self) -> usize { ... }
fn end(&self) -> usize { ... }
fn end_line(&self) -> usize { ... }
fn text<'a>(&self, text: &'a str) -> &'a str { ... }
fn start_position(&self) -> Position { ... }
fn end_position(&self) -> Position { ... }
fn width(&self) -> usize { ... }
}
Expand description
Represents an object that has a range in the text.
Required methods
Provided methods
fn start_line(&self) -> usize
fn start_line(&self) -> usize
Gets the line number of the start position in the text.
fn start_position(&self) -> Position
fn start_position(&self) -> Position
Gets the start byte position.
fn end_position(&self) -> Position
fn end_position(&self) -> Position
Gets the end byte position.