Credo.Execution.get_result

You're seeing just the function get_result, go back to Credo.Execution module for more information.
Link to this function

get_result(exec, name, default \\ nil)

View Source

Returns the result with the given name for the given exec struct (or return the given default value).

Credo.Execution.get_result(exec, "foo")
# => nil

Credo.Execution.get_result(exec, "foo", 42)
# => 42