Enum android_tools::error::Error [−][src]
pub enum Error {
PathNotFound(PathBuf),
CmdNotFound(String),
CmdFailed(String, String),
BundletoolNotFound,
CompiledResourcesNotFound,
Io(Error),
AndroidError(AndroidError),
}
Variants
PathNotFound(PathBuf)
Tuple Fields
0: PathBuf
Path {0:?} doesn’t exist
CmdNotFound(String)
Tuple Fields
0: String
Command {0} not found
CmdFailed(String, String)
Command had a non-zero exit code. Stdout: {0} Stderr: {1}
BundletoolNotFound
Bundletool is not found
CompiledResourcesNotFound
Compiled resources not found
Io(Error)
Tuple Fields
0: Error
IO error
AndroidError(AndroidError)
Tuple Fields
0: AndroidError
IO error
Trait Implementations
Performs the conversion.