Home
last modified time | relevance | path

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

/linux/rust/kernel/
H A Drevocable.rs67 pub struct Revocable<T> { struct
76 unsafe impl<T: Send> Send for Revocable<T> {} implementation
81 unsafe impl<T: Sync + Send> Sync for Revocable<T> {} implementation
83 impl<T> Revocable<T> { impl
212 impl<T> PinnedDrop for Revocable<T> { implementation
H A Ddevres.rs15 revocable::{Revocable, RevocableGuard},
26 data: Revocable<T>,
157 data <- Revocable::new(data), in new()
191 fn data(&self) -> &Revocable<T> { in data()