pub struct Pending;Expand description
The branch is initialized but has not started executing.
§Representation
A zero-sized state marker Pending that occupies 0 bytes of memory.
§Structure-only
Represents a static state indicating a branch is ready to start. It contains no runtime status, data values, or execution logic.
§Graduation
In the full wasm4pm execution engine, a pending task is placed in a scheduler queue for dynamic dispatch.
In this compat crate, it is modeled purely as a compile-time static type parameter.
Trait Implementations§
impl BranchState for Pending
Auto Trait Implementations§
impl Freeze for Pending
impl RefUnwindSafe for Pending
impl Send for Pending
impl Sync for Pending
impl Unpin for Pending
impl UnsafeUnpin for Pending
impl UnwindSafe for Pending
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