pub enum NextestExitCode {}
impl NextestExitCode {
pub const OK: i32 = 0;
pub const CARGO_METADATA_FAILED: i32 = 102;
pub const BUILD_FAILED: i32 = 101;
pub const DOUBLE_SPAWN_ERROR: i32 = 70;
pub const NO_TESTS_RUN: i32 = 4;
pub const TEST_RUN_FAILED: i32 = 100;
pub const ARCHIVE_CREATION_FAILED: i32 = 103;
pub const TEST_LIST_CREATION_FAILED: i32 = 104;
pub const SETUP_SCRIPT_FAILED: i32 = 105;
pub const INCOMPLETE_RUN: i32 = 106;
pub const WRITE_OUTPUT_ERROR: i32 = 110;
pub const UPDATE_ERROR: i32 = 90;
pub const UPDATE_AVAILABLE: i32 = 80;
pub const UPDATE_DOWNGRADE_NOT_PERFORMED: i32 = 81;
pub const UPDATE_CANCELED: i32 = 82;
pub const SETUP_ERROR: i32 = 96;
pub const EXPERIMENTAL_FEATURE_NOT_ENABLED: i32 = 95;
pub const INVALID_FILTERSET: i32 = 94;
pub const SELF_UPDATE_UNAVAILABLE: i32 = 93;
pub const REQUIRED_VERSION_NOT_MET: i32 = 92;
pub const RECOMMENDED_VERSION_NOT_MET: i32 = 10;
pub const RERUN_TESTS_OUTSTANDING: i32 = 5;
}