Home
last modified time | relevance | path

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

/linux-6.14.4/rust/kernel/
Drevocable.rs65 pub struct Revocable<T> { struct
71 // SAFETY: `Revocable` is `Send` if the wrapped object is also `Send`. This is because while the argument
74 unsafe impl<T: Send> Send for Revocable<T> {} implementation
79 unsafe impl<T: Sync + Send> Sync for Revocable<T> {} implementation
81 impl<T> Revocable<T> { impl
172 impl<T> PinnedDrop for Revocable<T> { implementation