@@ -45,7 +45,7 @@ All the following pub unsafe functions must be annotated with safety contracts a
45
45
| Rc< T:?Sized,A:Allocator > ::increment_strong_count_in | alloc::rc |
46
46
| Rc< T:?Sized,A:Allocator > ::decrement_strong_count_in | alloc::rc |
47
47
| Rc< T:?Sized,A:Allocator > ::get_mut_unchecked | alloc::rc |
48
- | Rc< A:Allocator > ::downcast_unchecked | alloc::rc |
48
+ | Rc<dyn Any, A: Allocator >::downcast_unchecked | alloc::rc |
49
49
| Weak< T:?Sized > ::from_raw | alloc::rc |
50
50
| Weak< T:?Sized,A:Allocator > ::from_raw_in | alloc::rc |
51
51
| Arc< mem::MaybeUninit<T > ,A>::assume_init | alloc::sync |
@@ -55,9 +55,9 @@ All the following pub unsafe functions must be annotated with safety contracts a
55
55
| Arc< T:?Sized > ::decrement_strong_count | alloc::sync |
56
56
| Arc< T:?Sized,A:Allocator > ::from_raw_in | alloc::sync |
57
57
| Arc< T:?Sized,A:Allocator > ::increment_strong_count_in | alloc::sync |
58
- | Arc< T:?Sized > ::decrement_strong_count_in | alloc::sync |
59
- | Arc< T:?Sized > ::get_mut_unchecked | alloc::sync |
60
- | Arc< T:?Sized > ::downcast_unchecked | alloc::sync |
58
+ | Arc< T:?Sized,A:Allocator > ::decrement_strong_count_in | alloc::sync |
59
+ | Arc< T:?Sized,A:Allocator > ::get_mut_unchecked | alloc::sync |
60
+ | Arc<dyn Any+Send+Sync,A : Allocator >::downcast_unchecked | alloc::sync |
61
61
| Weak< T:?Sized > ::from_raw | alloc::sync |
62
62
| Weak< T:?Sized,A:Allocator > ::from_raw_in | alloc::sync |
63
63
0 commit comments