[][src]Enum sunrise_libuser::ipc::MessageTy

pub enum MessageTy {
    Close,
    Request,
    Control,
}

Type of an IPC message.

Variants

Close

Requests the other end to close the handle and any resource associated with it. Normally called when dropping the ClientSession.

Request

A normal request.

Control

A request handled by the server handler. See switchbrew for information on which functions can be called.

Trait Implementations

impl Debug for MessageTy[src]

Auto Trait Implementations

impl RefUnwindSafe for MessageTy

impl Send for MessageTy

impl Sync for MessageTy

impl Unpin for MessageTy

impl UnwindSafe for MessageTy

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.