[][src]Struct qt_core::q_process::ProcessChannel

#[repr(transparent)]
pub struct 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.

C++ enum: QProcess::ProcessChannel.

C++ documentation:

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().

Methods

impl ProcessChannel[src]

pub fn to_int(&self) -> c_int[src]

impl ProcessChannel[src]

pub const StandardOutput: ProcessChannel[src]

The standard output (stdout) of the running process. (C++ enum variant: StandardOutput = 0)

pub const StandardError: ProcessChannel[src]

The standard error (stderr) of the running process. (C++ enum variant: StandardError = 1)

Trait Implementations

impl From<i32> for ProcessChannel[src]

impl From<ProcessChannel> for c_int[src]

impl Clone for ProcessChannel[src]

impl Copy for ProcessChannel[src]

impl Eq for ProcessChannel[src]

impl PartialEq<ProcessChannel> for ProcessChannel[src]

impl Debug for ProcessChannel[src]

impl StructuralPartialEq for ProcessChannel[src]

impl StructuralEq for ProcessChannel[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> StaticUpcast<T> for T[src]

impl<T, U> CastInto<U> for T where
    U: CastFrom<T>, 
[src]