> ## Documentation Index
> Fetch the complete documentation index at: https://bazel-pr-30827.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# exec_result {#modules.exec_result}

A structure storing result of repository\_ctx.execute() method. It contains the standard output stream content, the standard error stream content and the execution return code.

## Members

* [return\_code](#return_code)
* [stderr](#stderr)
* [stdout](#stdout)

<h2 id="return_code">
  return\_code
</h2>

```
int exec_result.return_code
```

The return code returned after the execution of the program. 256 if the process was terminated by a time out; values larger than 128 indicate termination by a signal.

<h2 id="stderr">
  stderr
</h2>

```
string exec_result.stderr
```

The content of the standard error output returned by the execution.

<h2 id="stdout">
  stdout
</h2>

```
string exec_result.stdout
```

The content of the standard output returned by the execution.
