[][src]Struct codespan::CodeMap

pub struct CodeMap { /* fields omitted */ }

Methods

impl CodeMap[src]

pub fn new() -> CodeMap[src]

Creates an empty CodeMap.

pub fn add_filemap(&mut self, name: FileName, src: String) -> Arc<FileMap>[src]

Adds a filemap to the codemap with the given name and source string

pub fn add_filemap_from_disk<P: Into<PathBuf>>(
    &mut self,
    name: P
) -> Result<Arc<FileMap>>
[src]

Adds a filemap to the codemap with the given name and source string

pub fn find_file(&self, index: ByteIndex) -> Option<&Arc<FileMap>>[src]

Looks up the File that contains the specified byte index.

pub fn update(&mut self, index: ByteIndex, src: String) -> Option<Arc<FileMap>>[src]

pub fn iter(&self) -> impl Iterator<Item = &Arc<FileMap>>[src]

Trait Implementations

impl Default for CodeMap[src]

impl Clone for CodeMap[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CodeMap[src]

Auto Trait Implementations

impl Send for CodeMap

impl Sync for CodeMap

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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