pub struct ExitCode(_);

Implementations

將另一個 ExitCode 和自身比較,若對方較嚴重,則將自身的值變成對方

use hyper_scripter::error::*;
let mut code = EXIT_KNOWN_ERR;
code.cmp_and_replace(EXIT_OK);
assert_eq!(code, EXIT_KNOWN_ERR);
code.cmp_and_replace(EXIT_OTHER_ERR);
assert_eq!(code, EXIT_OTHER_ERR);

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.