1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
use std::collections::HashMap;
use std::ops::Deref;
use std::convert::From;
use bytes::Bytes;
#[derive(PartialEq, Clone, Debug)]
pub enum FieldArgument {
Boolean(bool),
SignedOctet(i8),
UnsignedOctet(u8),
SignedShort(i16),
UnsignedShort(u16),
SignedLong(i32),
UnsignedLong(u32),
SignedLongLong(i64),
UnsignedLongLong(u64),
Float(f32),
Double(f64),
Decimal(i64),
ShortString(AmqpString),
LongString(AmqpString),
Timestamp(u64),
NestedTable(HashMap<AmqpString, FieldArgument>),
Void,
ByteArray(Vec<u8>),
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct AmqpString(pub(crate) Bytes);
impl Deref for AmqpString {
type Target = str;
fn deref(&self) -> &str {
::std::str::from_utf8(self.0.as_ref()).expect("Non Utf-8 bytes")
}
}
impl From<Vec<u8>> for AmqpString {
fn from(bytes: Vec<u8>) -> AmqpString {
AmqpString(Bytes::from(bytes))
}
}
impl From<String> for AmqpString {
fn from(bytes: String) -> AmqpString {
AmqpString(Bytes::from(bytes))
}
}
impl<'a> From<&'a [u8]> for AmqpString {
fn from(bytes: &'a [u8]) -> AmqpString {
AmqpString(Bytes::from(bytes))
}
}
impl From<&'static str> for AmqpString {
fn from(bytes: &'static str) -> AmqpString {
AmqpString(Bytes::from_static(bytes.as_bytes()))
}
}