Format all code following migration to Rust edition 2024

This commit is contained in:
2025-03-28 10:23:37 +01:00
parent 44188975ca
commit e9e3103938
20 changed files with 41 additions and 32 deletions

@ -1,10 +1,10 @@
use crate::actors::vnc_handler;
use crate::actors::vnc_tokens_actor::VNCTokensManager;
use crate::controllers::{HttpResult, LibVirtReq};
use crate::libvirt_lib_structures::domain::DomainState;
use crate::libvirt_lib_structures::XMLUuid;
use crate::libvirt_lib_structures::domain::DomainState;
use crate::libvirt_rest_structures::vm::VMInfo;
use actix_web::{rt, web, HttpRequest, HttpResponse};
use actix_web::{HttpRequest, HttpResponse, rt, web};
use std::path::Path;
use tokio::net::UnixStream;