Trait pg_embed::command_executor::ProcessStatus[][src]

pub trait ProcessStatus<T, E> where
    E: Error + Send,
    Self: Send
{ fn status_entry(&self) -> T;
fn status_exit(&self) -> T;
fn error_type(&self) -> E;
fn wrap_error<F: Error + Send + 'static>(
        &self,
        error: F,
        message: Option<String>
    ) -> E; }
Expand description

Child process status

Required methods

fn status_entry(&self) -> T

process entry status

process exit status

process error type

wrap error

Implementors