diff options
| author | Christian Cunningham <c@localhost> | 2022-08-24 19:13:08 -0700 |
|---|---|---|
| committer | Christian Cunningham <c@localhost> | 2022-08-24 19:13:08 -0700 |
| commit | 8ad21a3a41c52bd0e22f58eff79f49f8d7dd5237 (patch) | |
| tree | ea144c26ddf2db0ae27c5e6f7a61be29d8731039 | |
| parent | 48bbaa57a2972ce4751443e2e1f3d085ef9d87c2 (diff) | |
Public field
| -rw-r--r-- | src/util/lifo_queue.rs | 2 |
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> { |
