[][src]Struct vhdl_parser::SrcPos

pub struct SrcPos {
    pub source: Source,
    // some fields omitted
}

Lexical position in a file.

Fields

source: Source

The source

Methods

impl SrcPos[src]

pub fn new(source: Source, range: Range) -> SrcPos[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 start(&self) -> Position[src]

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

pub fn range(&self) -> Range[src]

pub fn file_name(&self) -> &Path[src]

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

Trait Implementations

impl AsRef<SrcPos> for SrcPos[src]

impl Clone for SrcPos[src]

impl Debug for SrcPos[src]

impl Eq for SrcPos[src]

impl Hash for SrcPos[src]

impl PartialEq<SrcPos> for SrcPos[src]

impl StructuralEq for SrcPos[src]

impl StructuralPartialEq for SrcPos[src]

Auto Trait Implementations

impl !RefUnwindSafe for SrcPos

impl Send for SrcPos

impl Sync for SrcPos

impl Unpin for SrcPos

impl !UnwindSafe for SrcPos

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.