InstallerSuccessCode

Type Alias InstallerSuccessCode 

Source
pub type InstallerSuccessCode = InstallerReturnCode;

Aliased Type§

pub enum InstallerSuccessCode {
    Positive(NonZero<u32>),
    Negative(NonZero<i32>),
}

Variants§

§

Positive(NonZero<u32>)

Installer Return Code that holds values greater than 0 (1..=u32::MAX).

§

Negative(NonZero<i32>)

Installer Return Code that holds values less than 0 (i32::MIN..=-1).