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:
parent
3690ad5b0b
commit
348779850b
@ -46,10 +46,15 @@ impl SystemInformationDiagnosticsPlugin {
|
|||||||
/// [`SystemInformationDiagnosticsPlugin`] for more information.
|
/// [`SystemInformationDiagnosticsPlugin`] for more information.
|
||||||
#[derive(Debug, Resource)]
|
#[derive(Debug, Resource)]
|
||||||
pub struct SystemInfo {
|
pub struct SystemInfo {
|
||||||
|
/// OS name and version.
|
||||||
pub os: String,
|
pub os: String,
|
||||||
|
/// System kernel version.
|
||||||
pub kernel: String,
|
pub kernel: String,
|
||||||
|
/// CPU model name.
|
||||||
pub cpu: String,
|
pub cpu: String,
|
||||||
|
/// Physical core count.
|
||||||
pub core_count: String,
|
pub core_count: String,
|
||||||
|
/// System RAM.
|
||||||
pub memory: String,
|
pub memory: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user