Skip to content
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

fix(future): remove unnecessary trait bounds #12

Merged
merged 2 commits into from
Dec 18, 2023
Merged
Changes from all commits
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
5 changes: 2 additions & 3 deletions crates/future/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ where
/// Quality of life methods for cleaner futures spawning, timeout and
/// cancellation using [`CancellationToken`].
pub trait FutureExt {
type Future: Future + Send;
type Future: Future;

/// Effectively wraps the future in [`tokio::time::timeout()`], returning a
/// future that also allows you to run different future, in case the timeout
Expand Down Expand Up @@ -270,8 +270,7 @@ pub trait StaticFutureExt {

impl<T> FutureExt for T
where
T: Future + Send,
T::Output: Send,
T: Future,
{
type Future = T;

Expand Down
Loading