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