pub struct TokenTreesView<'a, S>(/* private fields */);
Implementations§
Source§impl<'a, S: Copy> TokenTreesView<'a, S>
impl<'a, S: Copy> TokenTreesView<'a, S>
pub fn new(tts: &'a [TokenTree<S>]) -> Self
pub fn iter(&self) -> TtIter<'a, S> ⓘ
pub fn cursor(&self) -> Cursor<'a, S>
pub fn len(&self) -> usize
pub fn is_empty(&self) -> bool
pub fn try_into_subtree(self) -> Option<SubtreeView<'a, S>>
pub fn strip_invisible(self) -> TokenTreesView<'a, S>
Sourcepub fn flat_tokens(&self) -> &'a [TokenTree<S>]
pub fn flat_tokens(&self) -> &'a [TokenTree<S>]
This returns a flat structure of tokens (subtrees will be represented by a single node
preceding their children), so it isn’t suited for most use cases, only for matching leaves
at the beginning/end with no subtrees before them. If you need a structured pass, use TtIter
.
pub fn split( self, split_fn: impl FnMut(TtElement<'a, S>) -> bool, ) -> impl Iterator<Item = TokenTreesView<'a, S>>
Trait Implementations§
Source§impl<'a, S: Clone> Clone for TokenTreesView<'a, S>
impl<'a, S: Clone> Clone for TokenTreesView<'a, S>
Source§fn clone(&self) -> TokenTreesView<'a, S>
fn clone(&self) -> TokenTreesView<'a, S>
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 moreSource§impl<S: Copy> Display for TokenTreesView<'_, S>
impl<S: Copy> Display for TokenTreesView<'_, S>
impl<'a, S: Copy> Copy for TokenTreesView<'a, S>
Auto Trait Implementations§
impl<'a, S> Freeze for TokenTreesView<'a, S>
impl<'a, S> RefUnwindSafe for TokenTreesView<'a, S>where
S: RefUnwindSafe,
impl<'a, S> Send for TokenTreesView<'a, S>where
S: Sync,
impl<'a, S> Sync for TokenTreesView<'a, S>where
S: Sync,
impl<'a, S> Unpin for TokenTreesView<'a, S>
impl<'a, S> UnwindSafe for TokenTreesView<'a, S>where
S: RefUnwindSafe,
Blanket Implementations§
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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