miette

Struct LabeledSpan

source
pub struct LabeledSpan { /* private fields */ }
Expand description

A labeled SourceSpan.

Implementations§

source§

impl LabeledSpan

source

pub const fn new(label: Option<String>, offset: ByteOffset, len: usize) -> Self

Makes a new labeled span.

source

pub fn new_with_span(label: Option<String>, span: impl Into<SourceSpan>) -> Self

Makes a new labeled span using an existing span.

source

pub fn new_primary_with_span( label: Option<String>, span: impl Into<SourceSpan>, ) -> Self

Makes a new labeled primary span using an existing span.

source

pub fn set_label(&mut self, label: Option<String>)

Change the text of the label

source

pub fn at(span: impl Into<SourceSpan>, label: impl Into<String>) -> Self

Makes a new label at specified span

§Examples
use miette::LabeledSpan;

let source = "Cpp is the best";
let label = LabeledSpan::at(0..3, "should be Rust");
assert_eq!(
    label,
    LabeledSpan::new(Some("should be Rust".to_string()), 0, 3)
)
source

pub fn at_offset(offset: ByteOffset, label: impl Into<String>) -> Self

Makes a new label that points at a specific offset.

§Examples
use miette::LabeledSpan;

let source = "(2 + 2";
let label = LabeledSpan::at_offset(4, "expected a closing parenthesis");
assert_eq!(
    label,
    LabeledSpan::new(Some("expected a closing parenthesis".to_string()), 4, 0)
)
source

pub fn underline(span: impl Into<SourceSpan>) -> Self

Makes a new label without text, that underlines a specific span.

§Examples
use miette::LabeledSpan;

let source = "You have an eror here";
let label = LabeledSpan::underline(12..16);
assert_eq!(label, LabeledSpan::new(None, 12, 4))
source

pub fn label(&self) -> Option<&str>

Gets the (optional) label string for this LabeledSpan.

source

pub const fn inner(&self) -> &SourceSpan

Returns a reference to the inner SourceSpan.

source

pub const fn offset(&self) -> usize

Returns the 0-based starting byte offset.

source

pub const fn len(&self) -> usize

Returns the number of bytes this LabeledSpan spans.

source

pub const fn is_empty(&self) -> bool

True if this LabeledSpan is empty.

source

pub const fn primary(&self) -> bool

True if this LabeledSpan is a primary span.

Trait Implementations§

source§

impl Clone for LabeledSpan

source§

fn clone(&self) -> LabeledSpan

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 Debug for LabeledSpan

source§

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

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

impl PartialEq for LabeledSpan

source§

fn eq(&self, other: &LabeledSpan) -> 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 Eq for LabeledSpan

source§

impl StructuralPartialEq for LabeledSpan

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.