aboutsummaryrefslogtreecommitdiff
path: root/src/protocol/commands/_p_upcase.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/protocol/commands/_p_upcase.rs')
-rw-r--r--src/protocol/commands/_p_upcase.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/protocol/commands/_p_upcase.rs b/src/protocol/commands/_p_upcase.rs
index dd721d5..4f61906 100644
--- a/src/protocol/commands/_p_upcase.rs
+++ b/src/protocol/commands/_p_upcase.rs
@@ -7,6 +7,7 @@ pub struct P<'a> {
}
impl<'a> ParseCommand<'a> for P<'a> {
+ #[inline(always)]
fn from_packet(buf: PacketBuf<'a>) -> Option<Self> {
let body = buf.into_body();
let mut body = body.split_mut(|&b| b == b'=');