pub trait SolInputExpander {
// Required method
fn expand(&mut self, input: &SolInput) -> Result<TokenStream>;
}
Expand description
Expands a SolInput
into a TokenStream
.
Required Methods§
Sourcefn expand(&mut self, input: &SolInput) -> Result<TokenStream>
fn expand(&mut self, input: &SolInput) -> Result<TokenStream>
Expand a SolInput
into a TokenStream
.