added docstrings for struct in heuristics

This commit is contained in:
epi
2021-01-28 11:43:10 -06:00
parent 9cecf0c0d4
commit bc36dca3cd

View File

@@ -36,14 +36,19 @@ pub struct HeuristicTests<'a> {
/// Handles object for event handler interaction
handles: Arc<Handles>,
/// Config value: Don't auto-filter wildcard responses
dont_filter: bool,
/// Config value: Only print URLs
quiet: bool,
/// Config value: Append / to each request
add_slash: bool,
/// Config value: Instance of reqwest::Client
client: &'a Client,
/// Config value: URL query parameters
queries: &'a Vec<(String, String)>,
}