pub struct ImportedFileMap {
pub original_start_pos: BytePos,
pub original_end_pos: BytePos,
pub translated_filemap: Rc<FileMap>,
}
Holds information about a codemap::FileMap imported from another crate.
See creader::import_codemap() for more information.
Fields
original_start_pos | This FileMap's byte-offset within the codemap of its original crate
|
original_end_pos | The end of this FileMap within the codemap of its original crate
|
translated_filemap | The imported FileMap's representation within the local codemap
|
Keyboard shortcuts
- ?
- Show this help dialog
- S
- Focus the search field
- ⇤
- Move up in search results
- ⇥
- Move down in search results
- ⏎
- Go to active search result
Search tricks
Prefix searches with a type followed by a colon (e.g.
fn:
) to restrict the search to a given type.
Accepted types are: fn
, mod
,
struct
, enum
,
trait
, typedef
(or
tdef
).