Home
last modified time | relevance | path

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

/linux-6.14.4/rust/kernel/sync/
Dlocked_by.rs78 pub struct LockedBy<T: ?Sized, U: ?Sized> { struct
83 // SAFETY: `LockedBy` can be transferred across thread boundaries iff the data it protects can. argument
84 unsafe impl<T: ?Sized + Send, U: ?Sized> Send for LockedBy<T, U> {} implementation
92 unsafe impl<T: ?Sized + Send, U: ?Sized> Sync for LockedBy<T, U> {} implementation
94 impl<T, U> LockedBy<T, U> { implementation
114 impl<T: ?Sized, U> LockedBy<T, U> { impl