impl_filler

Function impl_filler 

Source
pub fn impl_filler<FillerT: FillImpl>(
    input: TokenStream,
    filler: FillerT,
) -> Result<TokenStream>
Expand description

Parses the macro input directly and passes them to the filler.

Use this function if information of all implemented/unimplemented trait/impl items are required at the same time. If the filler just maps each unimplemented trait item to an impl item statelessly, use completer_impl_filler2/proc_macro_impl_filler for shorthand.