Add missing doc comments to system_information_diagnostics_plugin (#19267)

# Objective

More trivial doc comments towards being able to deny missing docs across
the board.
This commit is contained in:
theotherphil 2025-05-26 20:59:49 +01:00 committed by GitHub
parent 3690ad5b0b
commit 348779850b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,10 +46,15 @@ impl SystemInformationDiagnosticsPlugin {
/// [`SystemInformationDiagnosticsPlugin`] for more information.
#[derive(Debug, Resource)]
pub struct SystemInfo {
/// OS name and version.
pub os: String,
/// System kernel version.
pub kernel: String,
/// CPU model name.
pub cpu: String,
/// Physical core count.
pub core_count: String,
/// System RAM.
pub memory: String,
}