pub trait QuiescenceQuery {
// Required method
fn pending_work(&mut self) -> PendingWork;
}Expand description
Common-minimum quiescence query, per surface. Implemented host-side (only the host sees loads, script, and layout at once); read by harnesses, protocol adapters, and agent observation assembly.
Required Methods§
Sourcefn pending_work(&mut self) -> PendingWork
fn pending_work(&mut self) -> PendingWork
The surface’s pending work right now.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".