Thomas
Thomas
Closes #213, closes #988 There is still one possible problem with this implementation that I don't know if it should be addressed or not. If the `base_url` is set to:...
Tried doing `add .class to the children of .list` but couldn't since `children of .list` is a HTMLCollection. Didn't think using `this.isArrayLike` was correct since it also checks for `Array.isArray`
Fixes #170 ~The thread::sleep isn't ideal but I didn't see a simple way to wait until the queue is dropped to check the number of fds.~
Had to add an extra crate to define the proc macro. Wasn't sure about the name of the macro to derive `Vec` and ended up with `VecApiResult`. If someone comes...
According to the [docs](https://developers.cloudflare.com/api/operations/zones-0-get) `id` and `name` are not required and `email` isn't even mentioned. My request had `id` and `email` as null, which broke deserialization ```json "owner": { "id":...
### A note for the community ### Workaround Use `cargo nextest run` instead of `cargo run`. Install it by running `cargo install --locked cargo-nextest` * Please vote on this issue...
### A note for the community Currently unknown fields are just completely ignored which might lead to client misconfiguration. Ideally we'll add `#[serde(deny_unknown_fields)]` in all config structs but this would...