Remove redundant Sized bound

Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
This commit is contained in:
Tyler Neely 2019-08-16 16:12:02 +02:00 committed by Yoshua Wuyts
parent 44b3d3dadd
commit 7b4bb26c5c
No known key found for this signature in database
GPG key ID: 24EA8164F96777ED

View file

@ -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,