pub struct TopSubtree<S>(pub Box<[TokenTree<S>]>);
Tuple Fields§
§0: Box<[TokenTree<S>]>
Implementations§
Source§impl<S: Copy> TopSubtree<S>
impl<S: Copy> TopSubtree<S>
pub fn empty(span: DelimSpan<S>) -> Self
pub fn invisible_from_leaves<const N: usize>( delim_span: S, leaves: [Leaf<S>; N], ) -> Self
pub fn from_token_trees( delimiter: Delimiter<S>, token_trees: TokenTreesView<'_, S>, ) -> Self
pub fn from_subtree(subtree: SubtreeView<'_, S>) -> Self
pub fn view(&self) -> SubtreeView<'_, S>
pub fn iter(&self) -> TtIter<'_, S> ⓘ
pub fn top_subtree(&self) -> &Subtree<S>
pub fn top_subtree_delimiter_mut(&mut self) -> &mut Delimiter<S>
pub fn token_trees(&self) -> TokenTreesView<'_, S>
Source§impl<S> TopSubtree<S>
impl<S> TopSubtree<S>
Sourcepub fn subtree_as_debug_string(&self, subtree_idx: usize) -> String
pub fn subtree_as_debug_string(&self, subtree_idx: usize) -> String
A simple line string used for debugging
Trait Implementations§
Source§impl<S: Clone> Clone for TopSubtree<S>
impl<S: Clone> Clone for TopSubtree<S>
Source§fn clone(&self) -> TopSubtree<S>
fn clone(&self) -> TopSubtree<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: Hash> Hash for TopSubtree<S>
impl<S: Hash> Hash for TopSubtree<S>
Source§impl<S: PartialEq> PartialEq for TopSubtree<S>
impl<S: PartialEq> PartialEq for TopSubtree<S>
impl<S: Eq> Eq for TopSubtree<S>
impl<S> StructuralPartialEq for TopSubtree<S>
Auto Trait Implementations§
impl<S> Freeze for TopSubtree<S>
impl<S> RefUnwindSafe for TopSubtree<S>where
S: RefUnwindSafe,
impl<S> Send for TopSubtree<S>where
S: Send,
impl<S> Sync for TopSubtree<S>where
S: Sync,
impl<S> Unpin for TopSubtree<S>
impl<S> UnwindSafe for TopSubtree<S>where
S: UnwindSafe,
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<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
Checks if this value is equivalent to the given key. Read more
§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