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§
Source§impl Clone for IPCUpcallType
impl Clone for IPCUpcallType
Source§fn clone(&self) -> IPCUpcallType
fn clone(&self) -> IPCUpcallType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IPCUpcallType
impl Debug for IPCUpcallType
impl Copy for IPCUpcallType
Auto Trait Implementations§
impl Freeze for IPCUpcallType
impl RefUnwindSafe for IPCUpcallType
impl Send for IPCUpcallType
impl Sync for IPCUpcallType
impl Unpin for IPCUpcallType
impl UnwindSafe for IPCUpcallType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more