We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Hurl 3.0.0, the public method run returns a Result<HurlResult, String>.
run
Result<HurlResult, String>
In the graph structs, there are private structs Call, Request, Response:
Call
Request
Response
pub struct HurlResult { pub entries: Vec<EntryResult>, pub time_in_ms: u128, //... }
pub struct EntryResult { pub entry_index: usize, pub calls: Vec<Call>, pub captures: Vec<CaptureResult>, //... }
pub struct Call { pub request: Request, pub response: Response, pub timings: Timings, }
The types Call, Request, Response should be public and exported by the crate hurl.
hurl
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In Hurl 3.0.0, the public method
run
returns aResult<HurlResult, String>
.In the graph structs, there are private structs
Call
,Request
,Response
:The types
Call
,Request
,Response
should be public and exported by the cratehurl
.The text was updated successfully, but these errors were encountered: