From 8ad21a3a41c52bd0e22f58eff79f49f8d7dd5237 Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Wed, 24 Aug 2022 19:13:08 -0700 Subject: Public field --- src/util/lifo_queue.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/util/lifo_queue.rs b/src/util/lifo_queue.rs index 931f5f1..d63ca6e 100644 --- a/src/util/lifo_queue.rs +++ b/src/util/lifo_queue.rs @@ -31,7 +31,7 @@ pub struct LifoQueue<'a, T: Sized, const COUNT: usize> { /// # Synchronized Pool of items /// /// Stores synchronization wrapper around the data pool - inner: NullLock<[Node<'a, T>; COUNT]>, + pub inner: NullLock<[Node<'a, T>; COUNT]>, } impl<'a, T: Sized, const COUNT: usize> LifoQueue<'a, T, COUNT> { -- cgit v1.2.1