useproc_macro2::TokenStream as TokenStream2;/// Events for the `autoinject_tt_in_group` function.
pub(crate)enumSearchGroup{/// Abort the group search
/// and display an error.
Error(TokenStream2),/// The trees are over,
/// we need to stop the search.
Break,}implFrom<TokenStream2>forSearchGroup{#[inline]fnfrom(e: TokenStream2)->Self{Self::Error(e)}}