MCPcopy Create free account
hub / github.com/Qovery/engine / exec_with_output

Method exec_with_output

lib-engine/src/cmd/command.rs:200–210  ·  view source on GitHub ↗
(
        &mut self,
        stdout_output: &mut STDOUT,
        stderr_output: &mut STDERR,
    )

Source from the content-addressed store, hash-verified

198 }
199
200 fn exec_with_output<STDOUT, STDERR>(
201 &mut self,
202 stdout_output: &mut STDOUT,
203 stderr_output: &mut STDERR,
204 ) -> Result<(), CommandError>
205 where
206 STDOUT: FnMut(String),
207 STDERR: FnMut(String),
208 {
209 self.exec_with_abort(stdout_output, stderr_output, &CommandKiller::never())
210 }
211
212 fn exec_with_abort<STDOUT, STDERR>(
213 &mut self,

Callers 7

log_command_versionFunction · 0.45
run_version_command_forFunction · 0.45
kubectl_exec_with_outputFunction · 0.45

Calls 1

exec_with_abortMethod · 0.45

Tested by

no test coverage detected