pub struct ProcessChannelMode(/* private fields */);Expand description
C++ enum: QProcess::ProcessChannelMode.
Implementations§
Source§impl ProcessChannelMode
impl ProcessChannelMode
Sourcepub const SeparateChannels: ProcessChannelMode
pub const SeparateChannels: ProcessChannelMode
C++ enum variant: SeparateChannels = 0
Sourcepub const MergedChannels: ProcessChannelMode
pub const MergedChannels: ProcessChannelMode
C++ enum variant: MergedChannels = 1
Sourcepub const ForwardedChannels: ProcessChannelMode
pub const ForwardedChannels: ProcessChannelMode
C++ enum variant: ForwardedChannels = 2
Sourcepub const ForwardedOutputChannel: ProcessChannelMode
pub const ForwardedOutputChannel: ProcessChannelMode
C++ enum variant: ForwardedOutputChannel = 3
Sourcepub const ForwardedErrorChannel: ProcessChannelMode
pub const ForwardedErrorChannel: ProcessChannelMode
C++ enum variant: ForwardedErrorChannel = 4
Trait Implementations§
Source§impl Clone for ProcessChannelMode
impl Clone for ProcessChannelMode
Source§fn clone(&self) -> ProcessChannelMode
fn clone(&self) -> ProcessChannelMode
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 ProcessChannelMode
impl Debug for ProcessChannelMode
Source§impl From<ProcessChannelMode> for c_int
impl From<ProcessChannelMode> for c_int
Source§fn from(value: ProcessChannelMode) -> Self
fn from(value: ProcessChannelMode) -> Self
Converts to this type from the input type.
Source§impl From<i32> for ProcessChannelMode
impl From<i32> for ProcessChannelMode
Source§impl PartialEq for ProcessChannelMode
impl PartialEq for ProcessChannelMode
Source§fn eq(&self, other: &ProcessChannelMode) -> bool
fn eq(&self, other: &ProcessChannelMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ProcessChannelMode
impl Eq for ProcessChannelMode
impl StructuralPartialEq for ProcessChannelMode
Auto Trait Implementations§
impl Freeze for ProcessChannelMode
impl RefUnwindSafe for ProcessChannelMode
impl Send for ProcessChannelMode
impl Sync for ProcessChannelMode
impl Unpin for ProcessChannelMode
impl UnsafeUnpin for ProcessChannelMode
impl UnwindSafe for ProcessChannelMode
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