Enum subprocess::PopenError [−][src]
pub enum PopenError {
Utf8Error(FromUtf8Error),
IoError(Error),
LogicError(&'static str),
}Error in Popen calls.
Variants
Utf8Error(FromUtf8Error)Error when attempting to convert bytes to string.
IoError(Error)The underlying error is io::Error.
LogicError(&'static str)A logical error was made, e.g. invalid arguments detected at run-time.
Trait Implementations
impl Debug for PopenError[src]
impl Debug for PopenErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl From<FromUtf8Error> for PopenError[src]
impl From<FromUtf8Error> for PopenErrorfn from(err: FromUtf8Error) -> PopenError[src]
fn from(err: FromUtf8Error) -> PopenErrorPerforms the conversion.
impl From<Error> for PopenError[src]
impl From<Error> for PopenErrorfn from(err: Error) -> PopenError[src]
fn from(err: Error) -> PopenErrorPerforms the conversion.
impl Error for PopenError[src]
impl Error for PopenErrorfn description(&self) -> &str[src]
fn description(&self) -> &strThis method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>[src]
fn cause(&self) -> Option<&Error>The lower-level cause of this error, if any. Read more
impl Display for PopenError[src]
impl Display for PopenErrorAuto Trait Implementations
impl Send for PopenError
impl Send for PopenErrorimpl Sync for PopenError
impl Sync for PopenError