pub struct vtkExecutableRunner(/* private fields */);Expand description
Launch a process on the current machine and get its output
Launch a process on the current machine and get its standard output and
standard error output. When ExecuteInSystemShell is false, arguments
needs to be added separately using the AddArgument / ClearArguments
API, otherwise command may not work correctly. If one does not know how to
parse the arguments of the command it want to execute then
ExecuteInSystemShell should be set to true.
Implementations§
Source§impl vtkExecutableRunner
impl vtkExecutableRunner
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkExecutableRunner wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkExecutableRunner
impl Default for vtkExecutableRunner
Auto Trait Implementations§
impl Freeze for vtkExecutableRunner
impl RefUnwindSafe for vtkExecutableRunner
impl !Send for vtkExecutableRunner
impl !Sync for vtkExecutableRunner
impl Unpin for vtkExecutableRunner
impl UnwindSafe for vtkExecutableRunner
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more