[][src]Struct sunrise_libuser::error::LoaderError

#[repr(transparent)]pub struct LoaderError(u32);

Loader errors.

Implementations

impl LoaderError[src]

pub const InvalidKacs: LoaderError[src]

KACs are invalid.

pub const InvalidPath: LoaderError[src]

Invalid path read.

pub const ProgramNotFound: LoaderError[src]

Tried to launch a title that does not exist.

pub const InvalidElf: LoaderError[src]

The ELF is corrupted.

Trait Implementations

impl Clone for LoaderError[src]

impl Copy for LoaderError[src]

impl Debug for LoaderError[src]

impl Eq for LoaderError[src]

impl From<LoaderError> for Error[src]

impl PartialEq<LoaderError> for LoaderError[src]

impl StructuralEq for LoaderError[src]

impl StructuralPartialEq for LoaderError[src]

Auto Trait Implementations

impl RefUnwindSafe for LoaderError

impl Send for LoaderError

impl Sync for LoaderError

impl Unpin for LoaderError

impl UnwindSafe for LoaderError

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