pub struct ProcessChannel(/* private fields */);
Expand description
This enum describes the process channels used by the running process. Pass one of these values to setReadChannel() to set the current read channel of QProcess.
C++ enum: QProcess::ProcessChannel
.
This enum describes the process channels used by the running process. Pass one of these values to setReadChannel() to set the current read channel of QProcess.
See also setReadChannel().
Implementations§
Source§impl ProcessChannel
impl ProcessChannel
Sourcepub const StandardOutput: ProcessChannel
pub const StandardOutput: ProcessChannel
The standard output (stdout) of the running process. (C++ enum variant: StandardOutput = 0
)
Sourcepub const StandardError: ProcessChannel
pub const StandardError: ProcessChannel
The standard error (stderr) of the running process. (C++ enum variant: StandardError = 1
)
Trait Implementations§
Source§impl Clone for ProcessChannel
impl Clone for ProcessChannel
Source§fn clone(&self) -> ProcessChannel
fn clone(&self) -> ProcessChannel
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ProcessChannel
impl Debug for ProcessChannel
Source§impl From<ProcessChannel> for c_int
impl From<ProcessChannel> for c_int
Source§fn from(value: ProcessChannel) -> Self
fn from(value: ProcessChannel) -> Self
Converts to this type from the input type.
Source§impl From<i32> for ProcessChannel
impl From<i32> for ProcessChannel
Source§impl PartialEq for ProcessChannel
impl PartialEq for ProcessChannel
impl Copy for ProcessChannel
impl Eq for ProcessChannel
impl StructuralPartialEq for ProcessChannel
Auto Trait Implementations§
impl Freeze for ProcessChannel
impl RefUnwindSafe for ProcessChannel
impl Send for ProcessChannel
impl Sync for ProcessChannel
impl Unpin for ProcessChannel
impl UnwindSafe for ProcessChannel
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