pub trait FieldVisitor { // Provided method fn visit_end(&mut self) { ... } }
A visitor to visit a Java field.
The methods of this trait must be called in the following order: visit_end.
visit_end
Visits the end of the field.
This method, which is the last one to be called, is used to inform the visitor that all the annotations and attributes of the field have been visited.