Located

Struct Located 

Source
pub struct Located<'s> { /* private fields */ }

Implementations§

Source§

impl<'s> Located<'s>

Source

pub fn new(input: &'s str) -> Self

Source

pub fn here(&self) -> Self

Source

pub fn span(&self) -> Range<usize>

Source

pub fn content(&self) -> &'s str

Source

pub fn source(&self) -> &'s str

Trait Implementations§

Source§

impl<'s> AsBytes for Located<'s>

Source§

fn as_bytes(&self) -> &[u8]

Casts the input type to a byte slice
Source§

impl<'s> AsRef<Located<'s>> for Located<'s>

Source§

fn as_ref(&self) -> &Located<'s>

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl AsRef<str> for Located<'_>

Source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Borrow<str> for Located<'_>

Source§

fn borrow(&self) -> &str

Immutably borrows from an owned value. Read more
Source§

impl<'s> Clone for Located<'s>

Source§

fn clone(&self) -> Located<'s>

Returns a duplicate 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<'s, T> Compare<T> for Located<'s>
where &'s str: Compare<T>,

Source§

fn compare(&self, t: T) -> CompareResult

Compares self to another value for equality
Source§

impl Debug for Located<'_>

Source§

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

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

impl Display for Located<'_>

Source§

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

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

impl<'s, T> FindSlice<T> for Located<'s>
where &'s str: FindSlice<T>,

Source§

fn find_slice(&self, substr: T) -> Option<Range<usize>>

Returns the offset of the slice if it is found
Source§

impl<'s> Location for Located<'s>

Source§

fn location(&self) -> usize

Number of indices input has advanced since start of parsing
Source§

impl<'s> Offset for Located<'s>

Source§

fn offset_from(&self, start: &Self) -> usize

Offset between the first byte of start and the first byte of selfa Read more
Source§

impl PartialEq<&str> for Located<'_>

Source§

fn eq(&self, other: &&str) -> 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<str> for Located<'_>

Source§

fn eq(&self, other: &str) -> 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 Located<'_>

Source§

fn eq(&self, other: &Self) -> 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<'s> Stream for Located<'s>

Source§

type Token = char

The smallest unit being parsed Read more
Source§

type Slice = Located<'s>

Sequence of Tokens Read more
Source§

type IterOffsets = CharIndices<'s>

Iterate with the offset from the current location
Source§

type Checkpoint = Located<'s>

A parse location within the stream
Source§

fn iter_offsets(&self) -> Self::IterOffsets

Iterate with the offset from the current location
Source§

fn eof_offset(&self) -> usize

Returns the offset to the end of the input
Source§

fn next_token(&mut self) -> Option<Self::Token>

Split off the next token from the input
Source§

fn offset_for<P>(&self, predicate: P) -> Option<usize>
where P: Fn(Self::Token) -> bool,

Finds the offset of the next matching token
Source§

fn offset_at(&self, tokens: usize) -> Result<usize, Needed>

Get the offset for the number of tokens into the stream Read more
Source§

fn next_slice(&mut self, offset: usize) -> Self::Slice

Split off a slice of tokens from the input Read more
Source§

fn checkpoint(&self) -> Self::Checkpoint

Save the current parse location within the stream
Source§

fn reset(&mut self, checkpoint: &Self::Checkpoint)

Revert the stream to a prior Self::Checkpoint Read more
Source§

fn raw(&self) -> &dyn Debug

Return the inner-most stream
Source§

fn peek_token(&self) -> Option<(Self, Self::Token)>
where Self: Clone,

Split off the next token from the input
Source§

fn peek_slice(&self, offset: usize) -> (Self, Self::Slice)
where Self: Clone,

Split off a slice of tokens from the input
Source§

fn finish(&mut self) -> Self::Slice

Advance to the end of the stream
Source§

fn peek_finish(&self) -> (Self, Self::Slice)
where Self: Clone,

Advance to the end of the stream
Source§

impl<'s> StreamIsPartial for Located<'s>

Source§

type PartialState = ()

Whether the stream is currently partial or complete
Source§

fn complete(&mut self) -> Self::PartialState

Mark the stream is complete
Source§

fn restore_partial(&mut self, _: Self::PartialState)

Restore the stream back to its previous state
Source§

fn is_partial_supported() -> bool

Report whether the Stream is can ever be incomplete
Source§

fn is_partial(&self) -> bool

Report whether the Stream is currently incomplete
Source§

impl<'s> Copy for Located<'s>

Auto Trait Implementations§

§

impl<'s> Freeze for Located<'s>

§

impl<'s> RefUnwindSafe for Located<'s>

§

impl<'s> Send for Located<'s>

§

impl<'s> Sync for Located<'s>

§

impl<'s> Unpin for Located<'s>

§

impl<'s> UnwindSafe for Located<'s>

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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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.