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
Implement a standard library which provides an interface for fetching resources across networks similar to JavaScript's fetch API
The text was updated successfully, but these errors were encountered:
will this work? ` use reqwest::blocking;
fn gethttp(i: String) -> Result<String, reqwest::Error> { let h = reqwest::blocking::get()?.text(); return h; } `
Sorry, something went wrong.
Yes, Something like this parsed with Object::x(y) as return value.
Object::x(y)
`fn webget(i: String) -> Object::String { return gethttp(i); }
fn gethttp(i: String) -> Result<String, reqwest::Error> { let h = reqwest::blocking::get(i)?.text(); return h; `}
will this work?
ea681d4
No branches or pull requests
Implement a standard library which provides an interface for fetching resources across networks similar to JavaScript's fetch API
The text was updated successfully, but these errors were encountered: