Closed zacharyhamm closed 2 years ago
Small change to get rust-mysql-binlog in compliance with rust 2021 rules about panics. unreachable! already takes format strings, so no need to call format!, and rust 2021 only allows string literals in panic! macros like unreachable!
unreachable!
format!
panic!
Seems good; thanks for the PR.
Small change to get rust-mysql-binlog in compliance with rust 2021 rules about panics.
unreachable!
already takes format strings, so no need to callformat!
, and rust 2021 only allows string literals inpanic!
macros likeunreachable!