[][src]Struct sunrise_libuser::error::LibuserError

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

Internal libuser errors.

Implementations

impl LibuserError[src]

pub const AddressSpaceExhausted: LibuserError[src]

An attempt to find available space failed.

pub const InvalidMoveHandleCount: LibuserError[src]

Too many move handles were passed to an IPC message.

pub const InvalidCopyHandleCount: LibuserError[src]

Too many copy handles were passed to an IPC message.

pub const PidMissing: LibuserError[src]

Attempted to read PID from an IPC message containing none.

pub const InvalidIpcBufferCount: LibuserError[src]

Not enough IPC buffers were passed to an IPC message.

pub const InvalidIpcBuffer: LibuserError[src]

Invalid IPCBuffer

pub const InvalidIpcRequest: LibuserError[src]

Invalid IPC request

Trait Implementations

impl Clone for LibuserError[src]

impl Copy for LibuserError[src]

impl Debug for LibuserError[src]

impl Eq for LibuserError[src]

impl From<LibuserError> for Error[src]

impl PartialEq<LibuserError> for LibuserError[src]

impl StructuralEq for LibuserError[src]

impl StructuralPartialEq for LibuserError[src]

Auto Trait Implementations

impl RefUnwindSafe for LibuserError

impl Send for LibuserError

impl Sync for LibuserError

impl Unpin for LibuserError

impl UnwindSafe for LibuserError

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.