Enum kernel::ipc::IPCUpcallType
source · [−]pub enum IPCUpcallType {
Service,
Client,
}
Expand description
Enum to mark which type of upcall is scheduled for the IPC mechanism.
Variants
Service
Indicates that the upcall is for the service upcall handler this process has setup.
Client
Indicates that the upcall is from a different service app and will call one of the client upcalls setup by this process.
Trait Implementations
sourceimpl Clone for IPCUpcallType
impl Clone for IPCUpcallType
sourcefn clone(&self) -> IPCUpcallType
fn clone(&self) -> IPCUpcallType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for IPCUpcallType
impl Debug for IPCUpcallType
impl Copy for IPCUpcallType
Auto Trait Implementations
impl RefUnwindSafe for IPCUpcallType
impl Send for IPCUpcallType
impl Sync for IPCUpcallType
impl Unpin for IPCUpcallType
impl UnwindSafe for IPCUpcallType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more