Struct LocatingSlice
pub struct LocatingSlice<I> { /* private fields */ }
Available on crate feature
dep_winnow
only.Expand description
Allow collecting the span of a parsed token within a slice
Spans are tracked as a Range<usize>
of byte offsets.
Converting byte offsets to line or column numbers is left up to the user, as computing column numbers requires domain knowledge (are columns byte-based, codepoint-based, or grapheme-based?) and O(n) iteration over the input to determine codepoint and line boundaries.
The line-span
crate can help with converting
byte offsets to line numbers.
See Parser::span
and Parser::with_span
for more details
Implementations§
§impl<I> LocatingSlice<I>
impl<I> LocatingSlice<I>
pub fn new(input: I) -> LocatingSlice<I>
pub fn new(input: I) -> LocatingSlice<I>
Wrap another Stream with span tracking
§impl<I> LocatingSlice<I>
impl<I> LocatingSlice<I>
pub fn reset_to_start(&mut self)
pub fn reset_to_start(&mut self)
Reset the stream to the start
This is useful for formats that encode a graph with addresses relative to the start of the input.
Trait Implementations§
§impl<I> AsBStr for LocatingSlice<I>where
I: AsBStr,
impl<I> AsBStr for LocatingSlice<I>where
I: AsBStr,
§impl<I> AsBytes for LocatingSlice<I>where
I: AsBytes,
impl<I> AsBytes for LocatingSlice<I>where
I: AsBytes,
§impl<I> AsRef<I> for LocatingSlice<I>
impl<I> AsRef<I> for LocatingSlice<I>
§impl<I> Clone for LocatingSlice<I>where
I: Clone,
impl<I> Clone for LocatingSlice<I>where
I: Clone,
§fn clone(&self) -> LocatingSlice<I>
fn clone(&self) -> LocatingSlice<I>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl<I, U> Compare<U> for LocatingSlice<I>where
I: Compare<U>,
impl<I, U> Compare<U> for LocatingSlice<I>where
I: Compare<U>,
§fn compare(&self, other: U) -> CompareResult
fn compare(&self, other: U) -> CompareResult
Compares self to another value for equality
§impl<I> Debug for LocatingSlice<I>where
I: Debug,
impl<I> Debug for LocatingSlice<I>where
I: Debug,
§impl<I> Default for LocatingSlice<I>where
I: Default,
impl<I> Default for LocatingSlice<I>where
I: Default,
§fn default() -> LocatingSlice<I>
fn default() -> LocatingSlice<I>
Returns the “default value” for a type. Read more
§impl<I> Deref for LocatingSlice<I>
impl<I> Deref for LocatingSlice<I>
§impl<I> Display for LocatingSlice<I>where
I: Display,
impl<I> Display for LocatingSlice<I>where
I: Display,
§impl<I, T> FindSlice<T> for LocatingSlice<I>where
I: FindSlice<T>,
impl<I, T> FindSlice<T> for LocatingSlice<I>where
I: FindSlice<T>,
§impl<I> Location for LocatingSlice<I>
impl<I> Location for LocatingSlice<I>
§impl<I> Offset<<LocatingSlice<I> as Stream>::Checkpoint> for LocatingSlice<I>where
I: Stream,
impl<I> Offset<<LocatingSlice<I> as Stream>::Checkpoint> for LocatingSlice<I>where
I: Stream,
§fn offset_from(&self, other: &<LocatingSlice<I> as Stream>::Checkpoint) -> usize ⓘ
fn offset_from(&self, other: &<LocatingSlice<I> as Stream>::Checkpoint) -> usize ⓘ
§impl<I> Offset for LocatingSlice<I>where
I: Stream,
impl<I> Offset for LocatingSlice<I>where
I: Stream,
§fn offset_from(&self, other: &LocatingSlice<I>) -> usize ⓘ
fn offset_from(&self, other: &LocatingSlice<I>) -> usize ⓘ
§impl<I> Ord for LocatingSlice<I>where
I: Ord,
impl<I> Ord for LocatingSlice<I>where
I: Ord,
§fn cmp(&self, other: &LocatingSlice<I>) -> Ordering
fn cmp(&self, other: &LocatingSlice<I>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl<I> PartialEq for LocatingSlice<I>where
I: PartialEq,
impl<I> PartialEq for LocatingSlice<I>where
I: PartialEq,
§impl<I> PartialOrd for LocatingSlice<I>where
I: PartialOrd,
impl<I> PartialOrd for LocatingSlice<I>where
I: PartialOrd,
§impl<I> SliceLen for LocatingSlice<I>where
I: SliceLen,
impl<I> SliceLen for LocatingSlice<I>where
I: SliceLen,
§impl<I> Stream for LocatingSlice<I>where
I: Stream,
impl<I> Stream for LocatingSlice<I>where
I: Stream,
§type IterOffsets = <I as Stream>::IterOffsets
type IterOffsets = <I as Stream>::IterOffsets
Iterate with the offset from the current location
§type Checkpoint = Checkpoint<<I as Stream>::Checkpoint, LocatingSlice<I>>
type Checkpoint = Checkpoint<<I as Stream>::Checkpoint, LocatingSlice<I>>
A parse location within the stream
§fn iter_offsets(&self) -> <LocatingSlice<I> as Stream>::IterOffsets
fn iter_offsets(&self) -> <LocatingSlice<I> as Stream>::IterOffsets
Iterate with the offset from the current location
§fn eof_offset(&self) -> usize ⓘ
fn eof_offset(&self) -> usize ⓘ
Returns the offset to the end of the input
§fn next_token(&mut self) -> Option<<LocatingSlice<I> as Stream>::Token> ⓘ
fn next_token(&mut self) -> Option<<LocatingSlice<I> as Stream>::Token> ⓘ
Split off the next token from the input
§fn offset_for<P>(&self, predicate: P) -> Option<usize> ⓘ
fn offset_for<P>(&self, predicate: P) -> Option<usize> ⓘ
Finds the offset of the next matching token
§fn offset_at(&self, tokens: usize) -> Result<usize, Needed> ⓘ
fn offset_at(&self, tokens: usize) -> Result<usize, Needed> ⓘ
Get the offset for the number of
tokens
into the stream Read more§fn next_slice(&mut self, offset: usize) -> <LocatingSlice<I> as Stream>::Slice
fn next_slice(&mut self, offset: usize) -> <LocatingSlice<I> as Stream>::Slice
Split off a slice of tokens from the input Read more
§fn checkpoint(&self) -> <LocatingSlice<I> as Stream>::Checkpoint
fn checkpoint(&self) -> <LocatingSlice<I> as Stream>::Checkpoint
Save the current parse location within the stream
§fn reset(&mut self, checkpoint: &<LocatingSlice<I> as Stream>::Checkpoint)
fn reset(&mut self, checkpoint: &<LocatingSlice<I> as Stream>::Checkpoint)
Revert the stream to a prior
Self::Checkpoint
Read more§fn peek_token(&self) -> Option<(Self, Self::Token)> ⓘwhere
Self: Clone,
fn peek_token(&self) -> Option<(Self, Self::Token)> ⓘwhere
Self: Clone,
Split off the next token from the input
§fn peek_slice(&self, offset: usize) -> (Self, Self::Slice) ⓘwhere
Self: Clone,
fn peek_slice(&self, offset: usize) -> (Self, Self::Slice) ⓘwhere
Self: Clone,
Split off a slice of tokens from the input
§fn peek_finish(&self) -> (Self, Self::Slice) ⓘwhere
Self: Clone,
fn peek_finish(&self) -> (Self, Self::Slice) ⓘwhere
Self: Clone,
Advance to the end of the stream
§impl<I> StreamIsPartial for LocatingSlice<I>where
I: StreamIsPartial,
impl<I> StreamIsPartial for LocatingSlice<I>where
I: StreamIsPartial,
§type PartialState = <I as StreamIsPartial>::PartialState
type PartialState = <I as StreamIsPartial>::PartialState
Whether the stream is currently partial or complete
§fn complete(&mut self) -> <LocatingSlice<I> as StreamIsPartial>::PartialState
fn complete(&mut self) -> <LocatingSlice<I> as StreamIsPartial>::PartialState
Mark the stream is complete
§fn restore_partial(
&mut self,
state: <LocatingSlice<I> as StreamIsPartial>::PartialState,
)
fn restore_partial( &mut self, state: <LocatingSlice<I> as StreamIsPartial>::PartialState, )
Restore the stream back to its previous state
§fn is_partial_supported() -> bool
fn is_partial_supported() -> bool
Report whether the
Stream
is can ever be incomplete§fn is_partial(&self) -> bool
fn is_partial(&self) -> bool
Report whether the
Stream
is currently incomplete§impl<I> UpdateSlice for LocatingSlice<I>where
I: UpdateSlice,
impl<I> UpdateSlice for LocatingSlice<I>where
I: UpdateSlice,
§fn update_slice(
self,
inner: <LocatingSlice<I> as Stream>::Slice,
) -> LocatingSlice<I>
fn update_slice( self, inner: <LocatingSlice<I> as Stream>::Slice, ) -> LocatingSlice<I>
Convert an
Output
type to be used as Stream
impl<I> Copy for LocatingSlice<I>where
I: Copy,
impl<I> Eq for LocatingSlice<I>where
I: Eq,
impl<I> StructuralPartialEq for LocatingSlice<I>
Auto Trait Implementations§
impl<I> Freeze for LocatingSlice<I>where
I: Freeze,
impl<I> RefUnwindSafe for LocatingSlice<I>where
I: RefUnwindSafe,
impl<I> Send for LocatingSlice<I>where
I: Send,
impl<I> Sync for LocatingSlice<I>where
I: Sync,
impl<I> Unpin for LocatingSlice<I>where
I: Unpin,
impl<I> UnwindSafe for LocatingSlice<I>where
I: UnwindSafe,
Blanket Implementations§
§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> ByteSized for T
impl<T> ByteSized for T
Source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
The alignment of this type in bytes.
Source§fn byte_align(&self) -> usize ⓘ
fn byte_align(&self) -> usize ⓘ
Returns the alignment of this type in bytes.
Source§fn ptr_size_ratio(&self) -> [usize; 2]
fn ptr_size_ratio(&self) -> [usize; 2]
Source§impl<T, R> Chain<R> for Twhere
T: ?Sized,
impl<T, R> Chain<R> for Twhere
T: ?Sized,
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> ExtAny for T
impl<T> ExtAny for T
Source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Source§impl<T> ExtMem for Twhere
T: ?Sized,
impl<T> ExtMem for Twhere
T: ?Sized,
Source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
Know whether dropping values of this type matters, in compile-time.
Source§fn mem_align_of_val(&self) -> usize ⓘ
fn mem_align_of_val(&self) -> usize ⓘ
Returns the alignment of the pointed-to value in bytes. Read more
Source§fn mem_size_of_val(&self) -> usize ⓘ
fn mem_size_of_val(&self) -> usize ⓘ
Returns the size of the pointed-to value in bytes. Read more
Source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
Returns
true
if dropping values of this type matters. Read moreSource§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where
Self: Sized,
Forgets about
self
without running its destructor. Read moreSource§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
Source§unsafe fn mem_zeroed<T>() -> T
unsafe fn mem_zeroed<T>() -> T
Available on crate feature
unsafe_layout
only.Returns the value of type
T
represented by the all-zero byte-pattern. Read moreSource§unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
Available on crate feature
unsafe_layout
only.Returns the value of type
T
represented by the all-zero byte-pattern. Read moreSource§fn mem_as_bytes(&self) -> &[u8] ⓘ
fn mem_as_bytes(&self) -> &[u8] ⓘ
Available on crate feature
unsafe_slice
only.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Hook for T
impl<T> Hook for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError> ⓘ
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError> ⓘ
Returns the layout of the type.
§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
§unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
Returns whether the given value has been niched. Read more
§fn resolve_niched(out: Place<NichedOption<T, N1>>)
fn resolve_niched(out: Place<NichedOption<T, N1>>)
Writes data to
out
indicating that a T
is niched.