Skip to content

Commit b547766

Browse files
author
Nouzan
authored
Merge pull request #14 from Nouzan/mutable-ref
remove `Sized` requirement for &mut Operator
2 parents 37df898 + cb1cad9 commit b547766

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/operator/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pub trait Operator<I> {
3636

3737
impl<'a, I, P> Operator<I> for &'a mut P
3838
where
39-
P: Operator<I>,
39+
P: Operator<I> + ?Sized,
4040
{
4141
type Output = P::Output;
4242

0 commit comments

Comments
 (0)