We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69252b2 commit 33a4b3eCopy full SHA for 33a4b3e
amqp-type/src/amqp_type.rs
@@ -1,6 +1,5 @@
1
use std::hash::Hash;
2
3
-use bigdecimal::num_traits::ToBytes;
4
5
use crate::array::array::Array;
6
use crate::compound::list::List;
amqp-type/src/compound/mod.rs
@@ -1,4 +1,3 @@
-use crate::serde::encode::Encoded;
mod encoded_vec;
pub(crate) mod list;
amqp-type/src/fixed_width/uint.rs
@@ -37,7 +37,7 @@ impl Decode for u32 {
37
}
38
39
40
-fn parse_uint(mut iter: impl Iterator<Item = u8>) -> Result<u32, AppError> {
+fn parse_uint(iter: impl Iterator<Item = u8>) -> Result<u32, AppError> {
41
let mut byte_vals = [0; 4];
42
let mut index = 0;
43
for b in iter.take(4) {
0 commit comments