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

Co-authored-by: Fabian-Lars <github@fabianlars.de>

Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/19540406278

Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
This commit is contained in:
Nazar Antoniuk
2025-11-20 14:34:17 +00:00
committed by tauri-bot
parent 8a640eddba
commit 8840fc8021

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>,
}