pub struct TopSubtreeBuilder<S> { /* private fields */ }
Implementations§
Source§impl<S: Copy> TopSubtreeBuilder<S>
impl<S: Copy> TopSubtreeBuilder<S>
pub fn new(top_delimiter: Delimiter<S>) -> Self
pub fn open(&mut self, delimiter_kind: DelimiterKind, open_span: S)
pub fn close(&mut self, close_span: S)
Sourcepub fn remove_last_subtree_if_invisible(&mut self)
pub fn remove_last_subtree_if_invisible(&mut self)
You cannot call this consecutively, it will only work once after close.
pub fn push(&mut self, leaf: Leaf<S>)
pub fn extend(&mut self, leaves: impl IntoIterator<Item = Leaf<S>>)
Sourcepub fn extend_tt_dangerous(
&mut self,
tt: impl IntoIterator<Item = TokenTree<S>>,
)
pub fn extend_tt_dangerous( &mut self, tt: impl IntoIterator<Item = TokenTree<S>>, )
This does not check the token trees are valid, beware!
pub fn extend_with_tt(&mut self, tt: TokenTreesView<'_, S>)
pub fn expected_delimiters(&self) -> impl Iterator<Item = &Delimiter<S>>
Sourcepub fn build_skip_top_subtree(self) -> TopSubtree<S>
pub fn build_skip_top_subtree(self) -> TopSubtree<S>
Builds, and remove the top subtree if it has only one subtree child.
pub fn build(self) -> TopSubtree<S>
pub fn restore_point(&self) -> SubtreeBuilderRestorePoint
pub fn restore(&mut self, restore_point: SubtreeBuilderRestorePoint)
Trait Implementations§
Source§impl<S: Clone> Clone for TopSubtreeBuilder<S>
impl<S: Clone> Clone for TopSubtreeBuilder<S>
Source§fn clone(&self) -> TopSubtreeBuilder<S>
fn clone(&self) -> TopSubtreeBuilder<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: Debug> Debug for TopSubtreeBuilder<S>
impl<S: Debug> Debug for TopSubtreeBuilder<S>
Source§impl<S: Hash> Hash for TopSubtreeBuilder<S>
impl<S: Hash> Hash for TopSubtreeBuilder<S>
Source§impl<S: PartialEq> PartialEq for TopSubtreeBuilder<S>
impl<S: PartialEq> PartialEq for TopSubtreeBuilder<S>
impl<S: Eq> Eq for TopSubtreeBuilder<S>
impl<S> StructuralPartialEq for TopSubtreeBuilder<S>
Auto Trait Implementations§
impl<S> Freeze for TopSubtreeBuilder<S>
impl<S> RefUnwindSafe for TopSubtreeBuilder<S>where
S: RefUnwindSafe,
impl<S> Send for TopSubtreeBuilder<S>where
S: Send,
impl<S> Sync for TopSubtreeBuilder<S>where
S: Sync,
impl<S> Unpin for TopSubtreeBuilder<S>where
S: Unpin,
impl<S> UnwindSafe for TopSubtreeBuilder<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