[][src]Struct sunrise_libkern::process::ProcessState

#[repr(transparent)]pub struct ProcessState(pub u8);

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]

impl Copy for ProcessState[src]

impl Debug for ProcessState[src]

impl Default for ProcessState[src]

impl Eq for ProcessState[src]

impl PartialEq<ProcessState> for ProcessState[src]

impl StructuralEq for ProcessState[src]

impl StructuralPartialEq for ProcessState[src]

Auto Trait Implementations

impl Send for ProcessState

impl Sync for ProcessState

impl Unpin for ProcessState

Blanket Implementations

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

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

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

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

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

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.