pub fn use_query_with_options<'a, K, T, E, F, R>(
cx: Scope<'a>,
key: K,
fetcher: F,
options: QueryOptions,
) -> Query<'a, T, E, impl Fn() + 'a>Expand description
Use a query to fetch remote data with extra options.
For more information see use_query and QueryOptions.