[][src]Trait error_chain::ExitCode

pub trait ExitCode {
    fn code(self) -> i32;
}
[]

Represents a value that can be used as the exit status of the process. See quick_main!.

Required methods

fn code(self) -> i32[]

Returns the value to use as the exit status.

Implementations on Foreign Types

impl ExitCode for i32[src][]

impl ExitCode for ()[src][]

Implementors