pub trait FillImpl {
type Args: Parse;
// Required method
fn fill(
self,
portrait: &[TraitItem],
args: Self::Args,
item_impl: &ItemImpl,
) -> Result<TokenStream>;
}Expand description
Determines how to fill an impl block.