Trait conch_runtime::env::ReportErrorEnvironment
[−]
[src]
pub trait ReportErrorEnvironment {
fn report_error(&self, err: &Error);
}An interface for reporting arbitrary errors.
Required Methods
fn report_error(&self, err: &Error)
Reports any Error as appropriate, e.g. print to stderr.
Implementations on Foreign Types
impl<'a, T: ?Sized + ReportErrorEnvironment> ReportErrorEnvironment for &'a T[src]
fn report_error(&self, err: &Error)[src]
Implementors
impl<A, IO, FD, L, V, EX, WD, N, ERR> ReportErrorEnvironment for Env<A, IO, FD, L, V, EX, WD, N, ERR> where
A: ArgumentsEnvironment,
A::Arg: Display,
FD: FileDescEnvironment,
FD::FileHandle: Borrow<FileDesc>,
N: Hash + Eq,impl<A, IO, FD, L, V, EX, WD, N, ERR> ReportErrorEnvironment for AtomicEnv<A, IO, FD, L, V, EX, WD, N, ERR> where
A: ArgumentsEnvironment,
A::Arg: Display,
FD: FileDescEnvironment,
FD::FileHandle: Borrow<FileDesc>,
N: Hash + Eq,