pub enum InvokeType {
LendMut = 1,
Lend = 2,
Scalar = 4,
BlockingScalar = 5,
}Expand description
Indicates the type of Message that is sent when making a SendMessage syscall.
Variants§
LendMut = 1
Mutably lend the buffer to the server
Lend = 2
Immutably lend
Scalar = 4
Send a scalar message to the server without blocking
BlockingScalar = 5
Send a scalar message to the server and wait for a reply
Auto Trait Implementations§
impl Freeze for InvokeType
impl RefUnwindSafe for InvokeType
impl Send for InvokeType
impl Sync for InvokeType
impl Unpin for InvokeType
impl UnwindSafe for InvokeType
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