File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -229,13 +229,13 @@ impl StdChildWrapper for Child {
229
229
& mut self . stderr
230
230
}
231
231
fn id ( & self ) -> u32 {
232
- self . id ( )
232
+ Child :: id ( self )
233
233
}
234
234
fn try_wait ( & mut self ) -> Result < Option < ExitStatus > > {
235
- self . try_wait ( )
235
+ Child :: try_wait ( self )
236
236
}
237
237
fn wait ( & mut self ) -> Result < ExitStatus > {
238
- self . wait ( )
238
+ Child :: wait ( self )
239
239
}
240
240
#[ cfg( unix) ]
241
241
fn signal ( & self , sig : i32 ) -> Result < ( ) > {
Original file line number Diff line number Diff line change @@ -226,16 +226,16 @@ impl TokioChildWrapper for Child {
226
226
& mut self . stderr
227
227
}
228
228
fn id ( & self ) -> Option < u32 > {
229
- self . id ( )
229
+ Child :: id ( self )
230
230
}
231
231
fn start_kill ( & mut self ) -> Result < ( ) > {
232
- self . start_kill ( )
232
+ Child :: start_kill ( self )
233
233
}
234
234
fn try_wait ( & mut self ) -> Result < Option < ExitStatus > > {
235
- self . try_wait ( )
235
+ Child :: try_wait ( self )
236
236
}
237
237
fn wait ( & mut self ) -> Pin < Box < dyn Future < Output = Result < ExitStatus > > + Send + ' _ > > {
238
- Box :: pin ( self . wait ( ) )
238
+ Box :: pin ( Child :: wait ( self ) )
239
239
}
240
240
#[ cfg( unix) ]
241
241
fn signal ( & self , sig : i32 ) -> Result < ( ) > {
You can’t perform that action at this time.
0 commit comments