Skip to content

Commit

Permalink
drop unpin requirement for Future Either* comb
Browse files Browse the repository at this point in the history
  • Loading branch information
GlenDC committed Nov 7, 2024
1 parent 03cb4eb commit 8285021
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rama-core/src/combinators/either.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ macro_rules! define_either {

impl<$($param),+, Output> std::future::Future for $id<$($param),+>
where
$($param: std::future::Future<Output = Output> + Unpin),+
$($param: std::future::Future<Output = Output>),+
{
type Output = Output;

Expand Down

0 comments on commit 8285021

Please sign in to comment.