[−][src]Function smithy_core::unwrapped_promise_from_future
pub fn unwrapped_promise_from_future<S: 'static, E: 'static>(
future: impl Future<Item = S, Error = E> + 'static
) -> UnwrappedPromise<S, E>
Converts a future into an UnwrappedPromise
, which causes the
app to re-render when the future succeeds or fails.