Skip to content

Commit 7b4bb26

Browse files
Tyler Neelyyoshuawuyts
Tyler Neely
authored andcommitted
Remove redundant Sized bound
Signed-off-by: Yoshua Wuyts <[email protected]>
1 parent 44b3d3d commit 7b4bb26

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/stream/stream/mod.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -270,10 +270,7 @@ pub trait Stream {
270270
/// #
271271
/// # }) }
272272
/// ```
273-
fn fuse(self) -> Fuse<Self>
274-
where
275-
Self: Sized,
276-
{
273+
fn fuse(self) -> Fuse<Self> {
277274
Fuse {
278275
stream: self,
279276
done: false,

0 commit comments

Comments
 (0)