Trait std::sys::FailWithCause

pub trait FailWithCause {
    fn fail_with(cause: Self, file: &'static str, line: uint) -> !;
}

Trait for initiating task failure.

Required Methods

fn fail_with(cause: Self, file: &'static str, line: uint) -> !

Fail the current task, taking ownership of cause

Implementors