Home
last modified time | relevance | path

Searched refs:ObjectReadGuardImpl (Results 1 – 4 of 4) sorted by relevance

/external/rust/beto-rust/common/handle_map/src/
Dguard.rs25 pub struct ObjectReadGuardImpl<'a, T: 'a> { struct
45 impl<'a, T> Deref for ObjectReadGuardImpl<'a, T> { argument
73 impl<'a, T> ObjectReadGuard for ObjectReadGuardImpl<'a, T> { implementation
Dshard.rs24 ObjectReadGuardImpl, ObjectReadGuardMapping, ObjectReadWriteGuardImpl,
62 pub fn get(&self, handle: Handle) -> Result<ObjectReadGuardImpl<T>, HandleNotPresentError> { in get()
73 Ok(ObjectReadGuardImpl { in get()
Dlib.rs28 pub use guard::{ObjectReadGuardImpl, ObjectReadWriteGuardImpl};
224 pub fn get(&self, handle: Handle) -> Result<ObjectReadGuardImpl<T>, HandleNotPresentError> { in get()
293 fn get(&self) -> Result<ObjectReadGuardImpl<Self::Object>, HandleNotPresentError>; in get()
Ddeclare_handle_map.rs151 … ) -> Result<$crate::ObjectReadGuardImpl<$wrapped_type>, $crate::HandleNotPresentError>