use_query_with_options

Function use_query_with_options 

Source
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>
where K: AsKeys + 'a, F: Fn() -> R + 'static, R: Future<Output = Result<T, E>> + 'static, T: 'static, E: 'static,
Expand description

Use a query to fetch remote data with extra options. For more information see use_query and QueryOptions.