@@ -22,13 +22,14 @@ use std::future::Future;
22
22
use smallvec:: SmallVec ;
23
23
24
24
use crate :: {
25
- Accessed , Accessible , AddOperation , AsMap , Buffer , BufferKeys , BufferLocation , BufferMap , BufferSettings ,
26
- Bufferable , Buffered , Chain , Collect , ForkClone , ForkCloneOutput , ForkTargetStorage , Gate ,
27
- GateRequest , IncompatibleLayout , Injection , InputSlot , IntoAsyncMap , IntoBlockingMap , Joinable ,
28
- JoinedValue , Node , OperateBuffer , OperateBufferAccess , OperateDynamicGate ,
29
- OperateScope , OperateSplit , OperateStaticGate , Output , Provider , RequestOfMap , ResponseOfMap ,
30
- Scope , ScopeEndpoints , ScopeSettings , ScopeSettingsStorage , Sendish , Service , SplitOutputs ,
31
- Splittable , StreamPack , StreamTargetMap , StreamsOfMap , Trim , TrimBranch , UnusedTarget ,
25
+ Accessed , Accessible , AddOperation , AsMap , Buffer , BufferKeys , BufferLocation , BufferMap ,
26
+ BufferSettings , Bufferable , Buffered , Chain , Collect , ForkClone , ForkCloneOutput ,
27
+ ForkTargetStorage , Gate , GateRequest , IncompatibleLayout , Injection , InputSlot , IntoAsyncMap ,
28
+ IntoBlockingMap , Joinable , JoinedValue , Node , OperateBuffer , OperateBufferAccess ,
29
+ OperateDynamicGate , OperateScope , OperateSplit , OperateStaticGate , Output , Provider ,
30
+ RequestOfMap , ResponseOfMap , Scope , ScopeEndpoints , ScopeSettings , ScopeSettingsStorage ,
31
+ Sendish , Service , SplitOutputs , Splittable , StreamPack , StreamTargetMap , StreamsOfMap , Trim ,
32
+ TrimBranch , UnusedTarget ,
32
33
} ;
33
34
34
35
pub ( crate ) mod connect;
@@ -232,10 +233,7 @@ impl<'w, 's, 'a> Builder<'w, 's, 'a> {
232
233
}
233
234
234
235
/// Alternative way of calling [`Joinable::join`]
235
- pub fn join < ' b , B : Joinable > (
236
- & ' b mut self ,
237
- buffers : B ,
238
- ) -> Chain < ' w , ' s , ' a , ' b , B :: Item > {
236
+ pub fn join < ' b , B : Joinable > ( & ' b mut self , buffers : B ) -> Chain < ' w , ' s , ' a , ' b , B :: Item > {
239
237
buffers. join ( self )
240
238
}
241
239
@@ -248,10 +246,7 @@ impl<'w, 's, 'a> Builder<'w, 's, 'a> {
248
246
}
249
247
250
248
/// Alternative way of calling [`Accessible::listen`].
251
- pub fn listen < ' b , B : Accessible > (
252
- & ' b mut self ,
253
- buffers : B ,
254
- ) -> Chain < ' w , ' s , ' a , ' b , B :: Keys > {
249
+ pub fn listen < ' b , B : Accessible > ( & ' b mut self , buffers : B ) -> Chain < ' w , ' s , ' a , ' b , B :: Keys > {
255
250
buffers. listen ( self )
256
251
}
257
252
0 commit comments