[][src]Struct zeta::tracking::Source

pub struct Source {
    pub origin: String,
    pub body: Vec<char>,
}

Fields

origin: Stringbody: Vec<char>

Methods

impl Source[src]

pub fn new(origin: &str, body: Vec<char>) -> Source[src]

pub fn from_file(origin: &str) -> Result<Source, Error>[src]

pub fn get_line_and_column(&self, index: usize) -> Option<(usize, usize)>[src]

pub fn get_index(&self, (line, column): (usize, usize)) -> Option<usize>[src]

pub fn get_region_from_lines_and_columns(
    &self,
    start_lc: (usize, usize),
    end_lc: (usize, usize)
) -> Option<SourceRegion>
[src]

pub fn get_region_slice(&self, start: usize, end: usize) -> RegionSlice[src]

pub fn get_excerpt(
    &self,
    region: &SourceRegion,
    is_error: bool,
    max_excerpt_lines: usize
) -> String
[src]

pub fn get_end_err_region(&self) -> SourceRegion[src]

Trait Implementations

impl Debug for Source[src]

impl Display for Source[src]

Auto Trait Implementations

impl Sync for Source

impl Send for Source

impl Unpin for Source

impl UnwindSafe for Source

impl RefUnwindSafe for Source

Blanket Implementations

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

impl<T> ToString for T where
    T: Display + ?Sized
[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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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