[][src]Struct moore_common::source::Source

pub struct Source(pub u32);

Implementations

impl Source[src]

pub fn get_path(self) -> RcStr[src]

Return the path of this source file.

pub fn get_content(self) -> Rc<dyn SourceContent>[src]

Access the contents of this source file.

pub fn extract(self, begin: usize, end: usize) -> String[src]

Copy a range of the source content into a String instance owned by the caller, possibly converting the encoding such that the result is in UTF-8.

Trait Implementations

impl Clone for Source[src]

impl Copy for Source[src]

impl Debug for Source[src]

impl Display for Source[src]

impl Eq for Source[src]

impl Hash for Source[src]

impl Ord for Source[src]

impl PartialEq<Source> for Source[src]

impl PartialOrd<Source> for Source[src]

impl StructuralEq for Source[src]

impl StructuralPartialEq for Source[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> ToString for T where
    T: Display + ?Sized
[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.