aboutsummaryrefslogtreecommitdiff
path: root/src/message/handshake/clientlogin.rs
diff options
context:
space:
mode:
authorMax Audron <me@audron.dev>2026-02-21 13:32:00 +0100
committerMax Audron <me@audron.dev>2026-02-21 13:32:00 +0100
commit8882c121f83cf4513eaee7515d6dcea133a65d69 (patch)
treee2818c5d99f209159fd904e0c75d4bc30c262e82 /src/message/handshake/clientlogin.rs
parentremove old readme.org (diff)
replace all match_variant instances with try_into
the match_variant macro was unclear, unreadable and no longer needed as we have automaticly derived from implementations for all Variant enum fields now
Diffstat (limited to '')
-rw-r--r--src/message/handshake/clientlogin.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/message/handshake/clientlogin.rs b/src/message/handshake/clientlogin.rs
index c589810..b619e48 100644
--- a/src/message/handshake/clientlogin.rs
+++ b/src/message/handshake/clientlogin.rs
@@ -21,10 +21,10 @@ impl HandshakeSerialize for ClientLogin {
}
impl From<VariantMap> for ClientLogin {
- fn from(input: VariantMap) -> Self {
+ fn from(mut input: VariantMap) -> Self {
ClientLogin {
- user: match_variant!(input.get("User").unwrap(), Variant::String),
- password: match_variant!(input.get("Password").unwrap(), Variant::String),
+ user: input.remove("User").unwrap().try_into().unwrap(),
+ password: input.remove("Password").unwrap().try_into().unwrap(),
}
}
}