[][src]Struct lisbeth_error::span::Span

pub struct Span { /* fields omitted */ }

Represents the position of a piece of code in the input file.

A Span is represented as the start and end position. Every character that is between these two position is considered as inside the span.

Implementations

impl Span[src]

pub const fn start(self) -> Position[src]

Returns the span's starting position.

pub const fn end(self) -> Position[src]

Returns the span's ending position.

The position ends on the next non-spanned part:

use lisbeth_error::span::SpannedStr;

let s = SpannedStr::input_file("hello");
assert_eq!(s.span().end().col(), 5);

Trait Implementations

impl Clone for Span[src]

impl Copy for Span[src]

impl Debug for Span[src]

impl PartialEq<Span> for Span[src]

impl StructuralPartialEq for Span[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.