style: minor clippy stuff

This commit is contained in:
nm17 2025-01-09 17:23:48 +04:00
parent 24eb77d78f
commit 6765fe930b
Signed by: nm17
GPG key ID: 3303B70C59145CD4
3 changed files with 6 additions and 5 deletions

View file

@ -111,8 +111,10 @@ pub fn parse_packet(input: &str) -> MyIError<&str, NMDeviceDataPacket> {
let (input, opt_name) = opt(delimited(tag("#"), take_while(|c| c != '\n'), tag("\n")))(input)?;
let mut packet = NMDeviceDataPacket::default();
packet.mac = device_mac;
let mut packet = NMDeviceDataPacket {
mac: device_mac,
..Default::default()
};
let (input, lines) = context(
"Получение значений до тега терминатора",

View file

@ -8,7 +8,6 @@ mod utils;
mod web_server;
use crate::web_server::server_main;
struct Params {}
#[ntex::main]
async fn main() {

View file

@ -1,7 +1,7 @@
use hifitime::Epoch;
use serde::{de, Deserialize, Deserializer, Serialize, Serializer};
use std::fmt;
use std::fmt::{Formatter, Write};
use std::fmt::Formatter;
#[derive(PartialOrd, PartialEq, Ord, Eq, Clone, Copy, Debug, Default)]
#[repr(transparent)]
@ -30,7 +30,7 @@ impl<'de> Deserialize<'de> for EpochUTC {
{
struct EpochVisitor;
impl<'de> de::Visitor<'de> for EpochVisitor {
impl de::Visitor<'_> for EpochVisitor {
type Value = EpochUTC;
fn expecting(&self, formatter: &mut Formatter) -> fmt::Result {