summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Cunningham <c@localhost>2022-08-24 19:13:08 -0700
committerChristian Cunningham <c@localhost>2022-08-24 19:13:08 -0700
commit8ad21a3a41c52bd0e22f58eff79f49f8d7dd5237 (patch)
treeea144c26ddf2db0ae27c5e6f7a61be29d8731039 /src
parent48bbaa57a2972ce4751443e2e1f3d085ef9d87c2 (diff)
Public field
Diffstat (limited to 'src')
-rw-r--r--src/util/lifo_queue.rs2
1 files changed, 1 insertions, 1 deletions
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> {