forked from mirror/async-std
Remove redundant Sized bound
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
This commit is contained in:
parent
44b3d3dadd
commit
7b4bb26c5c
1 changed files with 1 additions and 4 deletions
|
@ -270,10 +270,7 @@ pub trait Stream {
|
|||
/// #
|
||||
/// # }) }
|
||||
/// ```
|
||||
fn fuse(self) -> Fuse<Self>
|
||||
where
|
||||
Self: Sized,
|
||||
{
|
||||
fn fuse(self) -> Fuse<Self> {
|
||||
Fuse {
|
||||
stream: self,
|
||||
done: false,
|
||||
|
|
Loading…
Reference in a new issue