Struct dioxus_desktop::EvalResult
source · pub struct EvalResult { /* private fields */ }Expand description
A future that resolves to the result of a JavaScript evaluation.
Trait Implementations§
source§impl IntoFuture for EvalResult
impl IntoFuture for EvalResult
§type IntoFuture = Pin<Box<dyn Future<Output = Result<Value, Error>> + 'static, Global>>
type IntoFuture = Pin<Box<dyn Future<Output = Result<Value, Error>> + 'static, Global>>
Which kind of future are we turning this into?
source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more