Home
last modified time | relevance | path

Searched refs:AlwaysRefCounted (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/rust/kernel/
H A Dtypes.rs282 pub unsafe trait AlwaysRefCounted { interface
310 pub struct ARef<T: AlwaysRefCounted> {
319 unsafe impl<T: AlwaysRefCounted + Sync + Send> Send for ARef<T> {}
326 unsafe impl<T: AlwaysRefCounted + Sync + Send> Sync for ARef<T> {}
328 impl<T: AlwaysRefCounted> ARef<T> {
349 impl<T: AlwaysRefCounted> Clone for ARef<T> {
357 impl<T: AlwaysRefCounted> Deref for ARef<T> {
366 impl<T: AlwaysRefCounted> From<&T> for ARef<T> {
374 impl<T: AlwaysRefCounted> Drop for ARef<T> {
H A Dtask.rs151 unsafe impl crate::types::AlwaysRefCounted for Task {