/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
//! Useful runtime-agnostic future implementations.
use Future;
use Pin;
/// A boxed future that outputs a `Result<T, E>`.
pub type BoxFuture<'a, T, E> = ;