Struct syntax_pos::SpanData [−][src]
pub struct SpanData { pub lo: BytePos, pub hi: BytePos, pub ctxt: SyntaxContext, }
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.
SpanData
is public because Span
uses a thread-local interner and can't be
sent to other threads, but some pieces of performance infra run in a separate thread.
Using Span
is generally preferred.
Fields
lo: BytePos
hi: BytePos
ctxt: SyntaxContext
Information about where the macro came from, if this piece of code was created by a macro expansion.
Methods
impl SpanData
[src]
impl SpanData
pub fn with_lo(&self, lo: BytePos) -> Span
[src]
pub fn with_lo(&self, lo: BytePos) -> Span
pub fn with_hi(&self, hi: BytePos) -> Span
[src]
pub fn with_hi(&self, hi: BytePos) -> Span
pub fn with_ctxt(&self, ctxt: SyntaxContext) -> Span
[src]
pub fn with_ctxt(&self, ctxt: SyntaxContext) -> Span
Trait Implementations
impl Clone for SpanData
[src]
impl Clone for SpanData
fn clone(&self) -> SpanData
[src]
fn clone(&self) -> SpanData
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for SpanData
[src]
impl Copy for SpanData
impl Hash for SpanData
[src]
impl Hash for SpanData
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl PartialEq for SpanData
[src]
impl PartialEq for SpanData
fn eq(&self, other: &SpanData) -> bool
[src]
fn eq(&self, other: &SpanData) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &SpanData) -> bool
[src]
fn ne(&self, other: &SpanData) -> bool
This method tests for !=
.
impl Eq for SpanData
[src]
impl Eq for SpanData
impl Ord for SpanData
[src]
impl Ord for SpanData
fn cmp(&self, other: &SpanData) -> Ordering
[src]
fn cmp(&self, other: &SpanData) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl PartialOrd for SpanData
[src]
impl PartialOrd for SpanData
fn partial_cmp(&self, other: &SpanData) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &SpanData) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &SpanData) -> bool
[src]
fn lt(&self, other: &SpanData) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &SpanData) -> bool
[src]
fn le(&self, other: &SpanData) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &SpanData) -> bool
[src]
fn gt(&self, other: &SpanData) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &SpanData) -> bool
[src]
fn ge(&self, other: &SpanData) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Debug for SpanData
[src]
impl Debug for SpanData