We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 846465c commit 6cd57b9Copy full SHA for 6cd57b9
libs/derive/src/derive.rs
@@ -936,7 +936,7 @@ impl TraceDeriveInput {
936
unsafe impl #impl_generics #trait_name for #target_type #ty_generics #where_clause {
937
#assoc_constants
938
#visit_inside_gc
939
- fn #method_name<V: zerogc::GcVisitor>(&#mutability self, gc_visitor: &mut V) -> Result<(), V::Err> {
+ fn #method_name<TargetVisitor: zerogc::GcVisitor>(&#mutability self, gc_visitor: &mut TargetVisitor) -> Result<(), TargetVisitor::Err> {
940
#trace_impl
941
Ok(())
942
}
0 commit comments