We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30324b2 commit cd42614Copy full SHA for cd42614
src/manually_traced/indexmap.rs
@@ -12,6 +12,7 @@ unsafe_gc_impl! {
12
TraceImmutable => { where K: TraceImmutable, V: TraceImmutable, S: 'static },
13
TrustedDrop => { where K: TrustedDrop, V: TrustedDrop, S: 'static },
14
GcSafe => { where K: GcSafe<'gc, Id>, V: GcSafe<'gc, Id>, S: 'static },
15
+ GcDeserialize => { where K: GcDeserialize<'gc, 'de, Id>, V: GcDeserialize<'gc, 'de, Id>, S: 'static }
16
},
17
null_trace => { where K: NullTrace, V: NullTrace },
18
NEEDS_TRACE => K::NEEDS_TRACE || V::NEEDS_TRACE,
@@ -46,6 +47,7 @@ unsafe_gc_impl! {
46
47
TraceImmutable => { where T: TraceImmutable, S: 'static },
48
TrustedDrop => { where T: TrustedDrop, S: 'static },
49
GcSafe => { where T: GcSafe<'gc, Id>, S: 'static },
50
+ GcDeserialize => { where K: GcDeserialize<'gc, 'de, Id>, V: GcDeserialize<'gc, 'de, Id>, S: 'static },
51
52
NEEDS_TRACE => T::NEEDS_TRACE,
53
NEEDS_DROP => true, // Internal memory
0 commit comments