Skip to content

Commit

Permalink
Merge pull request #14 from Nouzan/mutable-ref
Browse files Browse the repository at this point in the history
remove `Sized` requirement for &mut Operator
  • Loading branch information
Nouzan authored Aug 29, 2022
2 parents 37df898 + cb1cad9 commit b547766
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/operator/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pub trait Operator<I> {

impl<'a, I, P> Operator<I> for &'a mut P
where
P: Operator<I>,
P: Operator<I> + ?Sized,
{
type Output = P::Output;

Expand Down

0 comments on commit b547766

Please sign in to comment.