Searched defs:LockedBy (Results 1 – 1 of 1) sorted by relevance
78 pub struct LockedBy<T: ?Sized, U: ?Sized> { struct83 // SAFETY: `LockedBy` can be transferred across thread boundaries iff the data it protects can. argument84 unsafe impl<T: ?Sized + Send, U: ?Sized> Send for LockedBy<T, U> {} implementation92 unsafe impl<T: ?Sized + Send, U: ?Sized> Sync for LockedBy<T, U> {} implementation94 impl<T, U> LockedBy<T, U> { implementation114 impl<T: ?Sized, U> LockedBy<T, U> { impl