[−][src]Struct sunrise_libkern::process::ProcessState
The state the process is currently in.
Implementations
impl ProcessState[src]
pub const Created: ProcessState[src]
Process is freshly created with svcCreateProcess and has not yet been started.
pub const CreatedAttached: ProcessState[src]
Process has been attached with a debugger before it was started.
pub const Started: ProcessState[src]
Process has been started.
pub const Crashed: ProcessState[src]
Process has crashed.
Processes will not enter this state unless they were created with EnableDebug.
pub const StartedAttached: ProcessState[src]
Process is started and has a debugger attached.
pub const Exiting: ProcessState[src]
Process is currently exiting.
pub const Exited: ProcessState[src]
Process is stopped.
pub const DebugSuspended: ProcessState[src]
Process has been suspended.
Trait Implementations
impl Clone for ProcessState[src]
fn clone(&self) -> ProcessState[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for ProcessState[src]
impl Debug for ProcessState[src]
impl Default for ProcessState[src]
fn default() -> ProcessState[src]
impl Eq for ProcessState[src]
impl PartialEq<ProcessState> for ProcessState[src]
fn eq(&self, other: &ProcessState) -> bool[src]
fn ne(&self, other: &ProcessState) -> bool[src]
impl StructuralEq for ProcessState[src]
impl StructuralPartialEq for ProcessState[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,