You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0277]: the trait bound `Gc<'gc, String, DummyCollectorId>: TraceImmutable` is not satisfied--> projects\nyar-interpreter\src\value\mod.rs:13:24|13 | #[derive(Debug, Clone, Trace)]| ^^^^^ the trait `TraceImmutable` is not implemented for `Gc<'gc, String, DummyCollectorId>`|= note: required because of the requirements on the impl of `Trace` for `HashMap<Gc<'gc, String, DummyCollectorId>, Gc<'gc, value::Value<'gc>, DummyCollectorId>>`= note: required by `NEEDS_TRACE`= note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
error[E0277]: the trait bound `Gc<'gc, String, DummyCollectorId>: GcRebrand<'new_gc, Id>` is not satisfied--> projects\nyar-interpreter\src\value\mod.rs:17:12|17 | String(GcString<'gc>),| ^^^^^^^^^^^^^ the trait `GcRebrand<'new_gc, Id>` is not implemented for `Gc<'gc, String, DummyCollectorId>`|= note: required by `assert_rebrand`help: consider introducing a `where` bound, but there might be an alternative better way to express this requirement|14 | pub enum Value<'gc> where Gc<'gc, String, DummyCollectorId>: GcRebrand<'new_gc, Id> {| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
How to deal with missing types such as VecDeque, which trait bounds need to be implemented manually
error[E0277]: the trait bound `VecDeque<Gc<'gc, value::Value<'gc>, DummyCollectorId>>: Trace` is not satisfied--> projects\nyar-interpreter\src\value\mod.rs:13:24|13 | #[derive(Debug, Clone, Trace)]| ^^^^^ the trait `Trace` is not implemented for `VecDeque<Gc<'gc, value::Value<'gc>, DummyCollectorId>>`|= note: required by `NEEDS_TRACE`= note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
The text was updated successfully, but these errors were encountered:
I try to use this library, but I have a lot of things I don't understand.
for version
0.2.0-alpha.1
The text was updated successfully, but these errors were encountered: