aboutsummaryrefslogtreecommitdiff
path: root/src/message/handshake/connack.rs
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2021-04-05 18:03:46 +0200
committerMax Audron <audron@cocaine.farm>2021-04-05 18:03:46 +0200
commitd7488b8040278c2cf9cd1b1eead206efe408cd9f (patch)
tree1188190a730e6c0d4277c588545c5ff557afb3cd /src/message/handshake/connack.rs
parentWIP: impl signalproxy types (diff)
WIP: impl more signalproxy objects
Diffstat (limited to 'src/message/handshake/connack.rs')
-rw-r--r--src/message/handshake/connack.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/message/handshake/connack.rs b/src/message/handshake/connack.rs
index 222c08c..a246679 100644
--- a/src/message/handshake/connack.rs
+++ b/src/message/handshake/connack.rs
@@ -29,7 +29,7 @@ impl Default for ConnAck {
}
}
-impl crate::Serialize for ConnAck {
+impl crate::serialize::Serialize for ConnAck {
fn serialize(&self) -> Result<Vec<std::primitive::u8>, Error> {
let mut bytes: Vec<u8> = Vec::new();
@@ -41,7 +41,7 @@ impl crate::Serialize for ConnAck {
}
}
-impl crate::Deserialize for ConnAck {
+impl crate::deserialize::Deserialize for ConnAck {
fn parse(b: &[u8]) -> Result<(usize, Self), Error> {
let (flen, flags) = u8::parse(b)?;
let (elen, extra) = i16::parse(&b[flen..])?;
.7.1&id=309899168a086de88acf97fd6683387a7af7078c&follow=1'>write tons of documentation and reorganize some modulesMax Audron-65/+300 2021-10-22remove wolfram alpha url shorteningMax Audron-1/+2 2021-10-20remove failing wolfram alpha test casesMax Audron-105/+55 2021-10-20bump version to 1.6.2Max Audron-3/+2 2021-10-20prepare for release on crates.ioMax Audron-39/+65 2021-10-20add async docs to macro crate and bump versionMax Audron-9/+10 2021-10-20change hook errors to be logged as warningsMax Audron-3/+3 2021-10-20fix configuration not loading correctly on release buildsMax Audron-8/+23 2021-10-19replace sedregex crate8-rework-sedMax Audron-20/+358 2021-10-19add formatting trait for irc codesMax Audron-0/+129 2021-10-17fix links in readmeMax Audron-2/+2