[][src]Enum sunrise_libuser::syscalls::ProcInfoAddrSpace

#[repr(u32)]pub enum ProcInfoAddrSpace {
    AS32Bit,
    AS32BitNoMap,
    AS36Bit,
    AS39Bit,
}

Address space type to use when creating a process.

Variants

AS32Bit

32-bit address space, spanning from 0x00200000 to 0x007FFFFFFF.

AS32BitNoMap

32-bit address space without the map region.

AS36Bit

36-bit address space, spanning from 0x08000000 to 0x007fffffff.

AS39Bit

39-bit address space, spanning from 0x08000000 to 0x7fffffffff.

Trait Implementations

impl Debug for ProcInfoAddrSpace[src]

impl From<u32> for ProcInfoAddrSpace[src]

Auto Trait Implementations

impl RefUnwindSafe for ProcInfoAddrSpace

impl Send for ProcInfoAddrSpace

impl Sync for ProcInfoAddrSpace

impl Unpin for ProcInfoAddrSpace

impl UnwindSafe for ProcInfoAddrSpace

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> SizedIPCBuffer for 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.