mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-12-26 09:13:46 -05:00
21 lines
1.1 KiB
Text
21 lines
1.1 KiB
Text
error[E0277]: the trait bound `OwnedIsolate: v8::scope::param::NewEscapableHandleScope<'_, '_>` is not satisfied
|
|
--> $DIR/handle_scope_escape_to_nowhere.rs:5:50
|
|
|
|
|
5 | let mut _scope = v8::EscapableHandleScope::new(&mut isolate);
|
|
| ----------------------------- ^^^^^^^^^^^^ the trait `v8::scope::param::NewEscapableHandleScope<'_, '_>` is not implemented for `OwnedIsolate`
|
|
| |
|
|
| required by a bound introduced by this call
|
|
|
|
|
note: required by `EscapableHandleScope::<'s, 'e>::new`
|
|
--> $DIR/scope.rs:303:3
|
|
|
|
|
303 | / pub fn new<P: param::NewEscapableHandleScope<'s, 'e>>(
|
|
304 | | param: &'s mut P,
|
|
305 | | ) -> P::NewScope {
|
|
| |__________________^
|
|
|
|
error[E0277]: the trait bound `OwnedIsolate: v8::scope::param::NewEscapableHandleScope<'_, '_>` is not satisfied
|
|
--> $DIR/handle_scope_escape_to_nowhere.rs:5:20
|
|
|
|
|
5 | let mut _scope = v8::EscapableHandleScope::new(&mut isolate);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `v8::scope::param::NewEscapableHandleScope<'_, '_>` is not implemented for `OwnedIsolate`
|