Struct rustc_ap_rustc_span::MultiSpan [−][src]
pub struct MultiSpan { /* fields omitted */ }
Expand description
A collection of Span
s.
Spans have two orthogonal attributes:
- They can be primary spans. In this case they are the locus of
the error, and would be rendered with
^^^
. - They can have a label. In this case, the label is written next to the mark in the snippet when we render.
Implementations
impl MultiSpan
[src]
impl MultiSpan
[src]pub fn new() -> MultiSpan
[src]
pub fn from_span(primary_span: Span) -> MultiSpan
[src]
pub fn from_spans(vec: Vec<Span>) -> MultiSpan
[src]
pub fn push_span_label(&mut self, span: Span, label: String)
[src]
pub fn primary_span(&self) -> Option<Span>
[src]
pub fn primary_span(&self) -> Option<Span>
[src]Selects the first primary span (if any).
pub fn primary_spans(&self) -> &[Span]ⓘ
[src]
pub fn primary_spans(&self) -> &[Span]ⓘ
[src]Returns all primary spans.
pub fn has_primary_spans(&self) -> bool
[src]
pub fn has_primary_spans(&self) -> bool
[src]Returns true
if any of the primary spans are displayable.
pub fn is_dummy(&self) -> bool
[src]
pub fn is_dummy(&self) -> bool
[src]Returns true
if this contains only a dummy primary span with any hygienic context.
pub fn replace(&mut self, before: Span, after: Span) -> bool
[src]
pub fn replace(&mut self, before: Span, after: Span) -> bool
[src]Replaces all occurrences of one Span with another. Used to move Span
s in areas that don’t
display well (like std macros). Returns whether replacements occurred.
pub fn span_labels(&self) -> Vec<SpanLabel>ⓘ
[src]
pub fn span_labels(&self) -> Vec<SpanLabel>ⓘ
[src]Returns the strings to highlight. We always ensure that there
is an entry for each of the primary spans – for each primary
span P
, if there is at least one label with span P
, we return
those labels (marked as primary). But otherwise we return
SpanLabel
instances with empty labels.
pub fn has_span_labels(&self) -> bool
[src]
pub fn has_span_labels(&self) -> bool
[src]Returns true
if any of the span labels is displayable.
Trait Implementations
impl Eq for MultiSpan
[src]
impl StructuralEq for MultiSpan
[src]
impl StructuralPartialEq for MultiSpan
[src]
Auto Trait Implementations
impl RefUnwindSafe for MultiSpan
impl !Send for MultiSpan
impl !Sync for MultiSpan
impl Unpin for MultiSpan
impl UnwindSafe for MultiSpan
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]pub fn equivalent(&self, key: &K) -> bool
[src]
pub fn equivalent(&self, key: &K) -> bool
[src]Compare self to key
and return true
if they are equal.
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
impl<'a, T> Captures<'a> for T where
T: ?Sized,
[src]
T: ?Sized,