fix(warnings): remove unused imports to get rid of warnings

This commit is contained in:
Andrea Toska 2025-02-07 08:46:09 +01:00
commit f74cfd3ff3
21 changed files with 15 additions and 38 deletions

View file

@ -23,7 +23,7 @@ impl RmcSerialize for String{
}
impl RmcSerialize for &str{
fn deserialize(mut reader: &mut dyn Read) -> Result<Self> {
fn deserialize(reader: &mut dyn Read) -> Result<Self> {
panic!("cannot serialize to &str")
}
fn serialize(&self, writer: &mut dyn Write) -> Result<()> {