pub struct ProcessChannel(/* private fields */);Expand description
C++ enum: QProcess::ProcessChannel.
Implementations§
Source§impl ProcessChannel
impl ProcessChannel
Sourcepub const StandardOutput: ProcessChannel
pub const StandardOutput: ProcessChannel
C++ enum variant: StandardOutput = 0
Sourcepub const StandardError: ProcessChannel
pub const StandardError: ProcessChannel
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 duplicate of the value. Read more
1.0.0 (const: unstable) · 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
Source§fn eq(&self, other: &ProcessChannel) -> bool
fn eq(&self, other: &ProcessChannel) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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