[][src]Struct vhdl_parser::SrcPos

pub struct SrcPos {
    pub source: Source,
    pub start: usize,
    pub length: usize,
}

Lexical position in a file.

Fields

source: Source

The source

start: usize

The start character position

length: usize

The length of the token in characters

Methods

impl SrcPos[src]

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

pub fn code_context(&self) -> String[src]

Create a string for pretty printing

pub fn show(&self, message: &str) -> String[src]

pub fn combine_into(self, other: &dyn AsRef<Self>) -> Self[src]

Combines two lexical positions into a larger legical position overlapping both The file name is assumed to be the same

pub fn combine(&self, other: &dyn AsRef<Self>) -> Self[src]

Trait Implementations

impl Searcher<SrcPos> for ItemAtCursor[src]

impl HasSrcPos for SrcPos[src]

impl<T> AsRef<SrcPos> for WithPos<T>[src]

impl AsRef<SrcPos> for SrcPos[src]

impl<T> Into<SrcPos> for WithPos<T>[src]

impl Clone for SrcPos[src]

impl Eq for SrcPos[src]

impl PartialEq<SrcPos> for SrcPos[src]

impl Debug for SrcPos[src]

impl Hash for SrcPos[src]

impl StructuralPartialEq for SrcPos[src]

impl StructuralEq for SrcPos[src]

Auto Trait Implementations

impl Send for SrcPos

impl Sync for SrcPos

impl Unpin for SrcPos

impl !UnwindSafe for SrcPos

impl !RefUnwindSafe for SrcPos

Blanket Implementations

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 = !

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]