Searched defs:UnsafeCell (Results 1 – 4 of 4) sorted by relevance
2 pub(crate) struct UnsafeCell<T>(std::cell::UnsafeCell<T>); struct4 impl<T> UnsafeCell<T> { impl
115 pub(crate) struct UnsafeCell<T>(::core::cell::UnsafeCell<T>); struct122 impl<T> UnsafeCell<T> { implementation
254 let s = slice.as_ptr() as *const grpc_slice as *const UnsafeCell<grpc_slice>; in from() constant273 let s = &*(s as *const GrpcSlice as *const grpc_slice as *const UnsafeCell<grpc_slice>); in from() constant
958 impl<'a, A: Arbitrary<'a>> Arbitrary<'a> for UnsafeCell<A> { implementation