pub type FormDataFuture<T: FormData> = Pin<Box<dyn Future<Output = Result<T, T::Err>> + Send>>;
Expand description

This is the return type of FormData::parse_form_data.

Aliased Type§

struct FormDataFuture<T: FormData> { /* private fields */ }