fix-getters-utils 0.3.2

Utils for fix-getters
Documentation
//! A [`Getter`](crate::Getter)s collector visting a [`SyntaxTree`](syn::File).

use crate::{GetterCollection, IdentificationMode};
use std::path::Path;

/// A [`Getter`](crate::Getter)s collector visting a [`SyntaxTree`](syn::File).
///
/// A [`SyntaxTree`](syn::File) is obtained by parsing a code source with [`syn`].
/// They contain more syntatical information than a [`TokenStream`](proc_macro2::TokenStream),
/// however, they imply the syntax is valid. For macros, use a
/// [`TokenStreamGetterCollector`](super::TokenStreamGetterCollector) and
/// for documentation code, use a [`DocCodeGetterCollector`](super::DocCodeGetterCollector).
pub trait SyntaxTreeGetterCollector: for<'ast> syn::visit::Visit<'ast> {
    /// Type for the [`GetterCollection`] used by this [`SyntaxTreeGetterCollector`].
    type GetterCollection: GetterCollection;

    /// Visits the `syntax_tree` collecting [`Getter`](crate::Getter)s
    /// in the [`GetterCollection`].
    fn collect(
        path: &Path,
        syntax_tree: &syn::File,
        identification_mode: IdentificationMode,
        getter_collection: &Self::GetterCollection,
    );
}