style: cosmetic changes

This commit is contained in:
Dmitriy Pleshevskiy 2020-10-16 10:49:05 +03:00
parent f750de076e
commit f2f49be0ec
7 changed files with 60 additions and 55 deletions

View file

@ -40,7 +40,7 @@ pub(crate) use query::QueryCommand;
pub(crate) use suggest::SuggestCommand;
#[cfg(feature = "control")]
pub(crate) use trigger::{TriggerCommand, TriggerAction};
pub(crate) use trigger::{TriggerAction, TriggerCommand};
use crate::result::Result;

View file

@ -24,12 +24,11 @@ impl StreamCommand for PopCommand<'_> {
fn receive(&self, message: String) -> Result<Self::Response> {
if message.starts_with("RESULT ") {
let count = message.split_whitespace().last().unwrap_or_default();
count
.parse()
.map_err(|_| Error::new(ErrorKind::QueryResponseError(
count.parse().map_err(|_| {
Error::new(ErrorKind::QueryResponseError(
"Cannot parse count of pop method response to usize",
)))
))
})
} else {
Err(Error::new(ErrorKind::WrongSonicResponse))
}

View file

@ -43,9 +43,7 @@ impl StreamCommand for QueryCommand<'_> {
dbg!(&message);
match RE.captures(&message) {
None => Err(Error::new(ErrorKind::WrongSonicResponse)),
Some(caps) => {
if let Some(caps) = RE.captures(&message) {
if caps["pending_query_id"] != caps["event_query_id"] {
Err(Error::new(ErrorKind::QueryResponseError(
"Pending id and event id don't match",
@ -53,9 +51,13 @@ impl StreamCommand for QueryCommand<'_> {
} else if caps["objects"].is_empty() {
Ok(vec![])
} else {
Ok(caps["objects"].split_whitespace().map(str::to_owned).collect())
}
}
Ok(caps["objects"]
.split_whitespace()
.map(str::to_owned)
.collect())
}
} else {
Err(Error::new(ErrorKind::WrongSonicResponse))
}
}
}

View file

@ -40,9 +40,7 @@ impl StreamCommand for StartCommand {
dbg!(&message);
match RE.captures(&message) {
None => Err(Error::new(ErrorKind::SwitchMode)),
Some(caps) => {
if let Some(caps) = RE.captures(&message) {
if self.mode.to_str() != &caps["mode"] {
Err(Error::new(ErrorKind::SwitchMode))
} else {
@ -57,7 +55,8 @@ impl StreamCommand for StartCommand {
mode: self.mode,
})
}
}
} else {
Err(Error::new(ErrorKind::SwitchMode))
}
}
}

View file

@ -49,7 +49,10 @@ impl StreamCommand for SuggestCommand<'_> {
} else if caps["words"].is_empty() {
Ok(vec![])
} else {
Ok(caps["words"].split_whitespace().map(str::to_owned).collect())
Ok(caps["words"]
.split_whitespace()
.map(str::to_owned)
.collect())
}
}
}

View file

@ -84,7 +84,9 @@
#![deny(clippy::all)]
#[cfg(not(any(feature = "ingest", feature = "search", feature = "control")))]
compile_error!(r#"Either features "ingest" or "search" or "control" must be enabled for "sonic-channel" crate"#);
compile_error!(
r#"Either features "ingest" or "search" or "control" must be enabled for "sonic-channel" crate"#
);
mod channel;
mod commands;