Trait cargo_culture_kit::exit_code::ExitCode[][src]

pub trait ExitCode {
    fn exit_code(&self) -> i32;
}

A means of genericizing expected process exit code Once the std::process::Termination trait hits stable, this trait may be deprecated or abstracted away. See: https://github.com/rust-lang/rust/issues/43301

Required Methods

The

Implementations on Foreign Types

impl ExitCode for Error
[src]

impl<T, E> ExitCode for Result<T, E> where
    T: ExitCode,
    E: ExitCode
[src]

Implementors