From d5ef05694f5ed4bbba164d0c9ee15106b134a358 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Sun, 28 Nov 2021 08:50:05 +0100 Subject: stop exporting buffer_queue::SetResult --- src/util/buffer_queue.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/util') diff --git a/src/util/buffer_queue.rs b/src/util/buffer_queue.rs index b741b36..8704ba5 100644 --- a/src/util/buffer_queue.rs +++ b/src/util/buffer_queue.rs @@ -128,7 +128,7 @@ impl BufferQueue { /// Pops and returns either a single character from the given set, or /// a buffer of characters none of which are in the set. - pub fn pop_except_from(&mut self, set: SmallCharSet) -> Option { + pub(crate) fn pop_except_from(&mut self, set: SmallCharSet) -> Option { let (result, now_empty) = match self.buffers.front_mut() { None => (None, false), Some((i, buf)) => { -- cgit v1.2.3