Enum shadow_rs::host::managed_thread::ResumeResult
source · pub enum ResumeResult {
Blocked(SyscallCondition),
ExitedThread(i32),
ExitedProcess,
}
Expand description
The ManagedThread’s state after having been allowed to execute some code.
Variants§
Blocked(SyscallCondition)
Blocked on a SyscallCondition.
ExitedThread(i32)
The native thread has exited with the given code.
ExitedProcess
The thread’s process has exited.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ResumeResult
impl RefUnwindSafe for ResumeResult
impl Send for ResumeResult
impl !Sync for ResumeResult
impl Unpin for ResumeResult
impl UnwindSafe for ResumeResult
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more