Replies: 1 comment
-
The return value of You could iterate and print: for cookie in res.cookies() {
println!("{:?}", cookie);
} Or any other way you would use an iterator. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
reqwest = { version = "0.12.2", features = ["cookies", "json"] }
the problem with
println!("{:?}", res.cookies());
this is what i get
Am I missing something?
Beta Was this translation helpful? Give feedback.
All reactions