chore(shell): clarify that the code field in ExitStatus is intentionally left private (#3116)

Co-authored-by: Fabian-Lars <github@fabianlars.de>
This commit is contained in:
Nazar Antoniuk
2025-11-20 16:33:19 +02:00
committed by GitHub
parent ae278ddf60
commit a4aa53ab90
+2
View File
@@ -89,6 +89,8 @@ impl CommandChild {
/// Describes the result of a process after it has terminated.
#[derive(Debug)]
pub struct ExitStatus {
// This field is intentionally left private.
// See: https://github.com/tauri-apps/plugins-workspace/pull/3115.
code: Option<i32>,
}