Enum syn::punctuated::Pair
source · pub enum Pair<T, P> {
Punctuated(T, P),
End(T),
}
Expand description
A single syntax tree node of type T
followed by its trailing punctuation
of type P
if any.
Refer to the module documentation for details about punctuated sequences.
Variants§
Implementations§
source§impl<T, P> Pair<T, P>
impl<T, P> Pair<T, P>
sourcepub fn into_value(self) -> T
pub fn into_value(self) -> T
Extracts the syntax tree node from this punctuated pair, discarding the following punctuation.
sourcepub fn value_mut(&mut self) -> &mut T
pub fn value_mut(&mut self) -> &mut T
Mutably borrows the syntax tree node from this punctuated pair.
sourcepub fn punct(&self) -> Option<&P>
pub fn punct(&self) -> Option<&P>
Borrows the punctuation from this punctuated pair, unless this pair is the final one and there is no trailing punctuation.
sourcepub fn punct_mut(&mut self) -> Option<&mut P>
pub fn punct_mut(&mut self) -> Option<&mut P>
Mutably borrows the punctuation from this punctuated pair, unless the pair is the final one and there is no trailing punctuation.
Example
punctuated.insert(0, parse_quote!('lifetime));
if let Some(punct) = punctuated.pairs_mut().next().unwrap().punct_mut() {
punct.span = span;
}
sourcepub fn new(t: T, p: Option<P>) -> Self
pub fn new(t: T, p: Option<P>) -> Self
Creates a punctuated pair out of a syntax tree node and an optional following punctuation.
sourcepub fn into_tuple(self) -> (T, Option<P>)
pub fn into_tuple(self) -> (T, Option<P>)
Produces this punctuated pair as a tuple of syntax tree node and optional following punctuation.
Trait Implementations§
source§impl<T, P> Extend<Pair<T, P>> for Punctuated<T, P>where
P: Default,
impl<T, P> Extend<Pair<T, P>> for Punctuated<T, P>where
P: Default,
source§fn extend<I: IntoIterator<Item = Pair<T, P>>>(&mut self, i: I)
fn extend<I: IntoIterator<Item = Pair<T, P>>>(&mut self, i: I)
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)source§impl<T, P> FromIterator<Pair<T, P>> for Punctuated<T, P>
impl<T, P> FromIterator<Pair<T, P>> for Punctuated<T, P>
source§impl<T, P> ToTokens for Pair<T, P>where
T: ToTokens,
P: ToTokens,
impl<T, P> ToTokens for Pair<T, P>where
T: ToTokens,
P: ToTokens,
source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
impl<T, P> Copy for Pair<T, P>where
T: Copy,
P: Copy,
Auto Trait Implementations§
impl<T, P> RefUnwindSafe for Pair<T, P>where
P: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, P> Send for Pair<T, P>where
P: Send,
T: Send,
impl<T, P> Sync for Pair<T, P>where
P: Sync,
T: Sync,
impl<T, P> Unpin for Pair<T, P>where
P: Unpin,
T: Unpin,
impl<T, P> UnwindSafe for Pair<T, P>where
P: UnwindSafe,
T: UnwindSafe,
Blanket Implementations§
source§impl<T> Spanned for Twhere
T: Spanned + ?Sized,
impl<T> Spanned for Twhere
T: Spanned + ?Sized,
source§fn span(&self) -> Span
fn span(&self) -> Span
Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty.