1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
use std::fmt::Display;
use futures::{Future, Stream};
use log::LogLevel;
use void::Void;
use until::Until;
use first_ok::FirstOk;
use log_errors::LogErrors;
use infallible::Infallible;
use BoxStream;
pub trait StreamExt: Stream + Sized {
    
    
    fn into_boxed(self) -> BoxStream<Self::Item, Self::Error>
    where
        Self: 'static
    {
        Box::new(self)
    }
    
    
    
    
    
    
    
    fn until<C>(self, condition: C) -> Until<Self, C>
    where
        C: Future<Item=()>,
        Self::Error: From<C::Error>
    {
        Until::new(self, condition)
    }
    
    
    
    fn first_ok(self) -> FirstOk<Self> {
        FirstOk::new(self)
    }
    
    
    fn log_errors(self, level: LogLevel, description: &'static str) -> LogErrors<Self>
    where
        Self::Error: Display
    {
        LogErrors::new(self, level, description)
    }
    
    
    fn infallible<E>(self) -> Infallible<Self, E>
    where
        Self: Stream<Error=Void>
    {
        Infallible::new(self)
    }
}
impl<T: Stream + Sized> StreamExt for T {}