#[non_exhaustive]pub struct Bracketed<T, S> {
pub open: OpenBracket,
pub bracketed: Vec<(T, Option<S>)>,
pub close: CloseBracket,
}
Expand description
Parse something bracketed, 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: OpenBracket
The open parenthesis.
bracketed: Vec<(T, Option<S>)>
Values in the type.
close: CloseBracket
The close parenthesis.
Implementations§
Trait Implementations§
Source§impl<'a, T, S> IntoIterator for &'a Bracketed<T, S>
impl<'a, T, S> IntoIterator for &'a Bracketed<T, S>
Source§impl<'a, T, S> IntoIterator for &'a mut Bracketed<T, S>
impl<'a, T, S> IntoIterator for &'a mut Bracketed<T, S>
Source§impl<T, S> IntoIterator for Bracketed<T, S>
impl<T, S> IntoIterator for Bracketed<T, S>
Source§impl<T: ToTokens, S: ToTokens> ToTokens for Bracketed<T, S>
impl<T: ToTokens, S: ToTokens> ToTokens for Bracketed<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.
impl<T: Eq, S: Eq> Eq for Bracketed<T, S>
impl<T, S> StructuralPartialEq for Bracketed<T, S>
Auto Trait Implementations§
impl<T, S> Freeze for Bracketed<T, S>
impl<T, S> RefUnwindSafe for Bracketed<T, S>where
T: RefUnwindSafe,
S: RefUnwindSafe,
impl<T, S> Send for Bracketed<T, S>
impl<T, S> Sync for Bracketed<T, S>
impl<T, S> Unpin for Bracketed<T, S>
impl<T, S> UnwindSafe for Bracketed<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.