Struct syntex_syntax::codemap::Span
[−]
[src]
pub struct Span { pub lo: BytePos, pub hi: BytePos, pub expn_id: ExpnId, }
Spans represent a region of code, used for error reporting. Positions in spans are absolute positions from the beginning of the codemap, not positions relative to FileMaps. Methods on the CodeMap can be used to relate spans back to the original source. You must be careful if the span crosses more than one file - you will not be able to use many of the functions on spans in codemap and you cannot assume that the length of the span = hi - lo; there may be space in the BytePos range between files.
Fields
lo | |
hi | |
expn_id | Information about where the macro came from, if this piece of code was created by a macro expansion. |
Methods
impl Span
[src]
fn substitute_dummy(self, other: Span) -> Span
Returns self
if self
is not the dummy span, and other
otherwise.
fn contains(self, other: Span) -> bool
Trait Implementations
impl PartialEq for Span
[src]
fn eq(&self, other: &Span) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Span) -> bool
This method tests for !=
.
impl Eq for Span
[src]
impl Encodable for Span
[src]
impl Decodable for Span
[src]
impl Debug for Span
[src]
Derived Implementations
impl Hash for Span
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0
Feeds a slice of this type into the state provided.
impl Copy for Span
[src]
impl Clone for Span
[src]
fn clone(&self) -> Span
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more