Lines Matching defs:Arc
128 pub struct Arc<T: ?Sized> { struct
129 ptr: NonNull<ArcInner<T>>, argument
130 _p: PhantomData<ArcInner<T>>, argument
141 impl<T: ?Sized> core::ops::Receiver for Arc<T> {} implementation
145 impl<T: ?Sized + Unsize<U>, U: ?Sized> core::ops::CoerceUnsized<Arc<U>> for Arc<T> {} implementation
148 impl<T: ?Sized + Unsize<U>, U: ?Sized> core::ops::DispatchFromDyn<Arc<U>> for Arc<T> {} implementation
154 unsafe impl<T: ?Sized + Sync + Send> Send for Arc<T> {} implementation
161 unsafe impl<T: ?Sized + Sync + Send> Sync for Arc<T> {} implementation
163 impl<T> Arc<T> { impl
203 impl<T: ?Sized> Arc<T> { implementation
278 impl<T: 'static> ForeignOwnable for Arc<T> { implementation
303 impl<T: ?Sized> Deref for Arc<T> { implementation
313 impl<T: ?Sized> AsRef<T> for Arc<T> { implementation
319 impl<T: ?Sized> Clone for Arc<T> { implementation
331 impl<T: ?Sized> Drop for Arc<T> { implementation
352 impl<T: ?Sized> From<UniqueArc<T>> for Arc<T> { implementation
358 impl<T: ?Sized> From<Pin<UniqueArc<T>>> for Arc<T> { implementation
460 impl<T: ?Sized> From<ArcBorrow<'_, T>> for Arc<T> { implementation
663 impl<T: fmt::Display + ?Sized> fmt::Display for Arc<T> { implementation
675 impl<T: fmt::Debug + ?Sized> fmt::Debug for Arc<T> { implementation