Function read_lock_render
pub fn read_lock_render<'a, T>(
lock: &'a RwLock<T>,
context: &'static str,
) -> Result<RwLockReadGuard<'a, T>, RenderError>where
T: ?Sized,Expand description
Like mutex_lock_render but for RwLock<T> read access.