Type Alias Span

Source
pub type Span = SpanData<SyntaxContext>;

Aliased Type§

struct Span {
    pub range: TextRange,
    pub anchor: SpanAnchor,
    pub ctx: SyntaxContext,
}

Fields§

§range: TextRange

The text range of this span, relative to the anchor. We need the anchor for incrementality, as storing absolute ranges will require recomputation on every change in a file at all times.

§anchor: SpanAnchor

The anchor this span is relative to.

§ctx: SyntaxContext

The syntax context of the span.

Implementations§

Source§

impl Span

Source

pub fn cover(self, other: Span) -> Span

Source§

impl<Ctx: Copy> SpanData<Ctx>

Source

pub fn eq_ignoring_ctx(self, other: Self) -> bool

Trait Implementations§

Source§

impl Display for Span

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<Ctx: Clone> Clone for SpanData<Ctx>

Source§

fn clone(&self) -> SpanData<Ctx>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<Ctx: Debug> Debug for SpanData<Ctx>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<Ctx: Hash> Hash for SpanData<Ctx>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<Ctx: PartialEq> PartialEq for SpanData<Ctx>

Source§

fn eq(&self, other: &SpanData<Ctx>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<Ctx: Copy> Copy for SpanData<Ctx>

Source§

impl<Ctx: Eq> Eq for SpanData<Ctx>

Source§

impl<Ctx> StructuralPartialEq for SpanData<Ctx>