mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-12-26 00:59:28 -05:00
13 lines
926 B
Text
13 lines
926 B
Text
error[E0277]: the trait bound `rusty_v8::OwnedIsolate: rusty_v8::scope::param::NewEscapableHandleScope<'_, '_>` is not satisfied
|
|
--> $DIR/handle_scope_escape_to_nowhere.rs:6:50
|
|
|
|
|
6 | let mut _scope = v8::EscapableHandleScope::new(&mut isolate);
|
|
| ^^^^^^^^^^^^ the trait `rusty_v8::scope::param::NewEscapableHandleScope<'_, '_>` is not implemented for `rusty_v8::OwnedIsolate`
|
|
|
|
|
= note: required by `rusty_v8::EscapableHandleScope::<'s, 'e>::new`
|
|
|
|
error[E0277]: the trait bound `rusty_v8::OwnedIsolate: rusty_v8::scope::param::NewEscapableHandleScope<'_, '_>` is not satisfied
|
|
--> $DIR/handle_scope_escape_to_nowhere.rs:6:20
|
|
|
|
|
6 | let mut _scope = v8::EscapableHandleScope::new(&mut isolate);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `rusty_v8::scope::param::NewEscapableHandleScope<'_, '_>` is not implemented for `rusty_v8::OwnedIsolate`
|