Enum nativeshell_build::BuildError[][src]

pub enum BuildError {
    ToolError {
        command: String,
        status: ExitStatus,
        stderr: String,
        stdout: String,
    },
    FileOperationError {
        operation: FileOperation,
        path: PathBuf,
        source_path: Option<PathBuf>,
        source: Error,
    },
    JsonError {
        text: Option<String>,
        source: Error,
    },
    YamlError {
        source: ScanError,
    },
    OtherError(String),
}

Variants

ToolError
Show fields

Fields of ToolError

command: Stringstatus: ExitStatusstderr: Stringstdout: String
FileOperationError
Show fields

Fields of FileOperationError

operation: FileOperationpath: PathBufsource_path: Option<PathBuf>source: Error
JsonError
Show fields

Fields of JsonError

text: Option<String>source: Error
YamlError
Show fields

Fields of YamlError

source: ScanError
OtherError(String)

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

The lower-level source of this error, if any. Read more

🔬 This is a nightly-only experimental API. (backtrace)

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.