nu_source

Struct Span

Source
pub struct Span { /* private fields */ }
Expand description

A Span is metadata which indicates the start and end positions.

Spans are combined with AnchorLocations to form another type of metadata, a Tag. A Span’s end position must be greater than or equal to its start position.

Implementations§

Source§

impl Span

Source

pub fn default() -> Self

Creates a default new Span that has 0 start and 0 end.

Source

pub fn unknown() -> Span

Creates a new Span that has 0 start and 0 end.

Source

pub fn from_list(list: &[impl HasSpan]) -> Span

Source

pub fn new(start: usize, end: usize) -> Span

Creates a new Span from start and end inputs. The end parameter must be greater than or equal to the start parameter.

Source

pub fn new_option(start: usize, end: usize) -> Option<Span>

Source

pub fn for_char(pos: usize) -> Span

Creates a Span with a length of 1 from the given position.

§Example
let char_span = Span::for_char(5);

assert_eq!(char_span.start(), 5);
assert_eq!(char_span.end(), 6);
Source

pub fn contains(&self, pos: usize) -> bool

Returns a bool indicating if the given position falls inside the current Span.

§Example
let span = Span::new(2, 8);

assert_eq!(span.contains(5), true);
assert_eq!(span.contains(8), false);
assert_eq!(span.contains(100), false);
Source

pub fn since(&self, other: impl Into<Span>) -> Span

Returns a new Span by merging an earlier Span with the current Span.

The resulting Span will have the same start position as the given Span and same end as the current Span.

§Example
let original_span = Span::new(4, 6);
let earlier_span = Span::new(1, 3);
let merged_span = origin_span.since(earlier_span);

assert_eq!(merged_span.start(), 1);
assert_eq!(merged_span.end(), 6);
Source

pub fn until(&self, other: impl Into<Span>) -> Span

Returns a new Span by merging a later Span with the current Span.

The resulting Span will have the same start position as the current Span and same end as the given Span.

§Example
let original_span = Span::new(4, 6);
let later_span = Span::new(9, 11);
let merged_span = origin_span.until(later_span);

assert_eq!(merged_span.start(), 4);
assert_eq!(merged_span.end(), 11);
Source

pub fn merge(&self, other: impl Into<Span>) -> Span

Source

pub fn until_option(&self, other: Option<impl Into<Span>>) -> Span

Returns a new Span by merging a later Span with the current Span.

If the given Span is of the None variant, A Span with the same values as the current Span is returned.

Source

pub fn string(&self, source: &str) -> String

Source

pub fn spanned_slice<'a>(&self, source: &'a str) -> Spanned<&'a str>

Source

pub fn spanned_string(&self, source: &str) -> Spanned<String>

Source

pub fn start(&self) -> usize

Returns the start position of the current Span.

Source

pub fn end(&self) -> usize

Returns the end position of the current Span.

Source

pub fn is_unknown(&self) -> bool

Returns a bool if the current Span indicates an “unknown” position.

§Example
let unknown_span = Span::unknown();
let known_span = Span::new(4, 6);

assert_eq!(unknown_span.is_unknown(), true);
assert_eq!(known_span.is_unknown(), false);
Source

pub fn is_closed(&self) -> bool

Returns a bool if the current Span does not cover.

§Example
//  make clean
//  ----
//  (0,4)
//
//       ^(5,5)

let make_span = Span::new(0,4);
let clean_span = Span::new(5,5);

assert_eq!(make_span.is_closed(), false);
assert_eq!(clean_span.is_closed(), true);
Source

pub fn slice<'a>(&self, source: &'a str) -> &'a str

Returns a slice of the input that covers the start and end of the current Span.

Trait Implementations§

Source§

impl Clone for Span

Source§

fn clone(&self) -> Span

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 Span

Source§

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

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

impl Default for Span

Source§

fn default() -> Span

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Span

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<&Range<usize>> for Span

Source§

fn from(input: &Range<usize>) -> Span

Converts to this type from the input type.
Source§

impl From<&Span> for Span

Source§

fn from(span: &Span) -> Span

Converts to this type from the input type.
Source§

impl From<&Span> for Tag

Source§

fn from(span: &Span) -> Self

Converts to this type from the input type.
Source§

impl From<&Tag> for Span

Source§

fn from(tag: &Tag) -> Self

Converts to this type from the input type.
Source§

impl From<(usize, usize)> for Span

Source§

fn from(input: (usize, usize)) -> Span

Converts to this type from the input type.
Source§

impl From<Option<Span>> for Span

Source§

fn from(input: Option<Span>) -> Span

Converts to this type from the input type.
Source§

impl From<Span> for Range<usize>

Source§

fn from(input: Span) -> Range<usize>

Converts to this type from the input type.
Source§

impl From<Span> for Tag

Source§

fn from(span: Span) -> Self

Converts to this type from the input type.
Source§

impl From<Tag> for Span

Source§

fn from(tag: Tag) -> Self

Converts to this type from the input type.
Source§

impl HasSpan for Span

Source§

fn span(&self) -> Span

Source§

impl Hash for Span

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 Ord for Span

Source§

fn cmp(&self, other: &Span) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq<usize> for Span

Source§

fn eq(&self, other: &usize) -> 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 PartialEq for Span

Source§

fn eq(&self, other: &Span) -> 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 PartialOrd<usize> for Span

Source§

fn partial_cmp(&self, other: &usize) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl PartialOrd for Span

Source§

fn partial_cmp(&self, other: &Span) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl PrettyDebugWithSource for Span

Source§

fn pretty_debug(&self, source: &str) -> DebugDocBuilder

Source§

fn refined_pretty_debug( &self, _refine: PrettyDebugRefineKind, source: &str, ) -> DebugDocBuilder

Source§

fn debug(&self, source: impl Into<Text>) -> String
where Self: Clone,

Source§

fn debuggable(self, source: impl Into<Text>) -> DebuggableWithSource<Self>

Source§

impl Serialize for Span

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Copy for Span

Source§

impl Eq for Span

Source§

impl StructuralPartialEq for Span

Auto Trait Implementations§

§

impl Freeze for Span

§

impl RefUnwindSafe for Span

§

impl Send for Span

§

impl Sync for Span

§

impl Unpin for Span

§

impl UnwindSafe for Span

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 u8)

🔬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> HasFallibleSpan for T
where T: HasSpan,

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> IntoSpanned for T
where T: HasFallibleSpan,

Source§

type Output = T

Source§

fn into_spanned(self, _span: impl Into<Span>) -> <T as IntoSpanned>::Output

Source§

impl<T> SpannedItem for T

Source§

fn spanned(self, span: impl Into<Span>) -> Spanned<Self>

Converts a value into a Spanned value
Source§

fn spanned_unknown(self) -> Spanned<Self>

Converts a value into a Spanned value, using an unknown Span
Source§

impl<T> TaggedItem for T

Source§

fn tagged(self, tag: impl Into<Tag>) -> Tagged<Self>

Source§

fn tagged_unknown(self) -> Tagged<Self>

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.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,