#[non_exhaustive]pub struct Parenthesized<T, S> {
pub open: OpenParen,
pub parenthesized: Vec<(T, Option<S>)>,
pub close: CloseParen,
}
Expand description
Parse something parenthesis, that is separated by ((T, S?)*)
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.open: OpenParen
The open parenthesis.
parenthesized: Vec<(T, Option<S>)>
Values in the type.
close: CloseParen
The close parenthesis.
Implementations§
Trait Implementations§
Source§impl<'a, T, S> IntoIterator for &'a Parenthesized<T, S>
impl<'a, T, S> IntoIterator for &'a Parenthesized<T, S>
Source§impl<'a, T, S> IntoIterator for &'a mut Parenthesized<T, S>
impl<'a, T, S> IntoIterator for &'a mut Parenthesized<T, S>
Source§impl<T, S> IntoIterator for Parenthesized<T, S>
impl<T, S> IntoIterator for Parenthesized<T, S>
Source§impl<T, S> Parse for Parenthesized<T, S>
impl<T, S> Parse for Parenthesized<T, S>
Source§impl<T, S> Peek for Parenthesized<T, S>
impl<T, S> Peek for Parenthesized<T, S>
Source§impl<T, S> Spanned for Parenthesized<T, S>
impl<T, S> Spanned for Parenthesized<T, S>
Source§impl<T: ToTokens, S: ToTokens> ToTokens for Parenthesized<T, S>
impl<T: ToTokens, S: ToTokens> ToTokens for Parenthesized<T, S>
Source§fn to_tokens(
&self,
context: &mut MacroContext<'_, '_, '_>,
stream: &mut TokenStream,
) -> Result<()>
fn to_tokens( &self, context: &mut MacroContext<'_, '_, '_>, stream: &mut TokenStream, ) -> Result<()>
Turn the current item into tokens.
Source§impl<T, S> TryClone for Parenthesized<T, S>
impl<T, S> TryClone for Parenthesized<T, S>
impl<T: Eq, S: Eq> Eq for Parenthesized<T, S>
impl<T, S> StructuralPartialEq for Parenthesized<T, S>
Auto Trait Implementations§
impl<T, S> Freeze for Parenthesized<T, S>
impl<T, S> RefUnwindSafe for Parenthesized<T, S>where
T: RefUnwindSafe,
S: RefUnwindSafe,
impl<T, S> Send for Parenthesized<T, S>
impl<T, S> Sync for Parenthesized<T, S>
impl<T, S> Unpin for Parenthesized<T, S>
impl<T, S> UnwindSafe for Parenthesized<T, S>
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.