From c29501fcf362aaaf2e58d6f6a27eba7a180cd4a9 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Tue, 13 Nov 2018 22:55:20 -0800 Subject: [PATCH] better name --- src/codec/framed.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/codec/framed.rs b/src/codec/framed.rs index 74a204e7..b05d7abd 100644 --- a/src/codec/framed.rs +++ b/src/codec/framed.rs @@ -127,7 +127,7 @@ impl Framed { } /// Check if write buffer is full. - pub fn is_full(&self) -> bool { + pub fn is_write_buf_full(&self) -> bool { self.inner.get_ref().is_full() }