Update On Mon Mar 3 19:34:41 CET 2025

This commit is contained in:
github-action[bot]
2025-03-03 19:34:42 +01:00
parent f673e85f4b
commit bb2cbae785
249 changed files with 11549 additions and 2089 deletions
@@ -0,0 +1,18 @@
use std::fmt::{self, Debug, Formatter};
pub struct PlatformSpecification {
pub system_name: String,
pub system_version: String,
pub system_kernel_version: String,
pub system_arch: String,
}
impl Debug for PlatformSpecification {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
write!(
f,
"System Name: {}\nSystem Version: {}\nSystem kernel Version: {}\nSystem Arch: {}",
self.system_name, self.system_version, self.system_kernel_version, self.system_arch
)
}
}