error: structs that derive the `DriveRequestBuilder` trait must have the standard request fields help: consider using the `request` attribute to add them: `#[request(method=Method::GET, url="url")]` --> tests/ui/derive_macro/invalid_inputs.rs:4:14 | 4 | struct Test1 {} | ^^ error: the `request` attribute must be placed before `#[derive(DriveRequestBuilder)]` note: this is required since `request` adds fields to the struct which will not be present when it is used after `derive` help: consider moving `#[request(method=reqwest::Method::GET, url="test")]` before `#[derive(DriveRequestBuilder)]` --> tests/ui/derive_macro/invalid_inputs.rs:7:1 | 7 | #[request(method=reqwest::Method::GET, url="test")] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^