aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/rust/kernel/sync/arc.rs (follow)
AgeCommit message (Expand)AuthorFilesLines
2023-04-12rust: sync: add functions for initializing `UniqueArc<MaybeUninit<T>>`Benno Lossin1-0/+24
2023-04-12rust: sync: reduce stack usage of `UniqueArc::try_new_uninit`Benno Lossin1-3/+13
2023-04-12rust: init/sync: add `InPlaceInit` trait to pin-initialize smart pointersBenno Lossin1-0/+24
2023-04-12rust: sync: change error type of constructor functionsBenno Lossin1-4/+4
2023-04-12rust: sync: arc: Add UniqueArc<MaybeUninit<T>::assume_init()Asahi Lina1-0/+11
2023-04-10rust: sync: arc: Implement Arc<dyn Any + Send + Sync>::downcast()Asahi Lina1-0/+2
2023-04-10rust: sync: impl {Debug,Display} for {Unique,}ArcBoqun Feng1-0/+25
2023-02-07rust: types: implement `ForeignOwnable` for `Arc<T>`Wedson Almeida Filho1-1/+31
2023-01-16rust: sync: add support for dispatching on Arc and ArcBorrow.Wedson Almeida Filho1-2/+18
2023-01-16rust: sync: introduce `UniqueArc`Wedson Almeida Filho1-2/+150
2023-01-16rust: sync: allow type of `self` to be `ArcBorrow<T>`Wedson Almeida Filho1-0/+23
2023-01-16rust: sync: introduce `ArcBorrow`Wedson Almeida Filho1-0/+97
2023-01-16rust: sync: allow coercion from `Arc<T>` to `Arc<U>`Wedson Almeida Filho1-1/+26
2023-01-16rust: sync: allow type of `self` to be `Arc<T>` or variantsWedson Almeida Filho1-0/+28
2023-01-16rust: sync: add `Arc` for ref-counted allocationsWedson Almeida Filho1-0/+157