Skip to content

Commit e45cb07

Browse files
committed
cargo fmt
1 parent 279c3e1 commit e45cb07

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

rust/cubeorchestrator/src/cubestore_message_parser.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,8 @@ impl std::fmt::Display for ParseError {
2626

2727
impl std::error::Error for ParseError {}
2828

29-
pub fn parse_cubestore_ws_result(
30-
msg_data: &[u8],
31-
) -> Result<Vec<HashMap<&str, &str>>, ParseError> {
32-
let http_message =
33-
root_as_http_message(msg_data).map_err(|_| ParseError::FlatBufferError)?;
29+
pub fn parse_cubestore_ws_result(msg_data: &[u8]) -> Result<Vec<HashMap<&str, &str>>, ParseError> {
30+
let http_message = root_as_http_message(msg_data).map_err(|_| ParseError::FlatBufferError)?;
3431

3532
let command_type = http_message.command_type();
3633

0 commit comments

Comments
 (0)