pub type Result<T> = Result<T, PopenError>;Expand description
Result returned by calls in the subprocess crate in places where
::std::io::Result does not suffice.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(PopenError),
}pub type Result<T> = Result<T, PopenError>;Result returned by calls in the subprocess crate in places where
::std::io::Result does not suffice.
pub enum Result<T> {
Ok(T),
Err(PopenError),
}