Enum perseus_cli::errors::ExecutionError [−][src]
pub enum ExecutionError {
CmdExecFailed {
cmd: String,
source: Error,
},
NextStdoutLineNone,
GetServerExecutableFailed {
source: Error,
},
ServerExectutableMsgNotFound,
ParseServerExecutableFailed {
err: String,
},
RemoveArtifactsFailed {
target: Option<String>,
source: Error,
},
MovePkgDirFailed {
source: Error,
},
ThreadWaitFailed,
PortNotNumber {
source: ParseIntError,
},
}Expand description
Errors that can occur while attempting to execute a Perseus app with build/serve (export errors are separate).
Variants
CmdExecFailed
NextStdoutLineNone
GetServerExecutableFailed
Fields
source: ErrorServerExectutableMsgNotFound
ParseServerExecutableFailed
Fields
err: StringRemoveArtifactsFailed
MovePkgDirFailed
Fields
source: ErrorThreadWaitFailed
PortNotNumber
Fields
source: ParseIntErrorTrait Implementations
Performs the conversion.
Performs the conversion.
