Skip to content

add IntoFuture #259

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
5 commits merged into from
Oct 15, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cargo fmt
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
  • Loading branch information
yoshuawuyts committed Sep 29, 2019
commit 722b354fd072d409aa32126e212c134f750d59da
2 changes: 1 addition & 1 deletion src/future/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ pub use async_macros::{join, select, try_join, try_select};

use cfg_if::cfg_if;

pub use into_future::IntoFuture;
pub use pending::pending;
pub use poll_fn::poll_fn;
pub use ready::ready;
pub use into_future::IntoFuture;

mod into_future;
mod pending;
Expand Down