Home
last modified time | relevance | path

Searched defs:Arc (Results 1 – 4 of 4) sorted by relevance

/rust/kernel/sync/
Darc.rs128 pub struct Arc<T: ?Sized> { struct
129 ptr: NonNull<ArcInner<T>>, argument
130 _p: PhantomData<ArcInner<T>>, argument
175 impl<T: ?Sized + Unsize<U>, U: ?Sized> core::ops::CoerceUnsized<Arc<U>> for Arc<T> {} implementation
178 impl<T: ?Sized + Unsize<U>, U: ?Sized> core::ops::DispatchFromDyn<Arc<U>> for Arc<T> {} implementation
184 unsafe impl<T: ?Sized + Sync + Send> Send for Arc<T> {} implementation
191 unsafe impl<T: ?Sized + Sync + Send> Sync for Arc<T> {} implementation
193 impl<T> Arc<T> { impl
214 impl<T: ?Sized> Arc<T> { implementation
335 impl<T: 'static> ForeignOwnable for Arc<T> { implementation
[all …]
/rust/kernel/sync/arc/
Dstd_vendor.rs13 impl Arc<dyn Any + Send + Sync> { implementation
/rust/kernel/
Dworkqueue.rs523 unsafe impl<T, const ID: u64> WorkItemPointer<ID> for Arc<T> implementation
541 unsafe impl<T, const ID: u64> RawWorkItem<ID> for Arc<T> implementation
Dinit.rs1226 impl<T> InPlaceInit<T> for Arc<T> { implementation