chore: raw fix for cloudinary fallback upload issue #87
GitHub Actions / clippy
succeeded
Sep 29, 2024 in 0s
clippy
3 warnings
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 3 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.81.0 (eeb90cda1 2024-09-04)
- cargo 1.81.0 (2dbb1af80 2024-08-20)
- clippy 0.1.81 (eeb90cd 2024-09-04)
Annotations
Check warning on line 27 in functions/fetch-quote/src/models.rs
github-actions / clippy
field `url` is never read
warning: field `url` is never read
--> functions/fetch-quote/src/models.rs:27:9
|
23 | pub struct InputQuote {
| ---------- field in this struct
...
27 | pub url: String,
| ^^^
Check warning on line 15 in functions/fetch-quote/src/models.rs
github-actions / clippy
fields `id` and `url` are never read
warning: fields `id` and `url` are never read
--> functions/fetch-quote/src/models.rs:15:9
|
14 | pub struct Author {
| ------ fields in this struct
15 | pub id: String,
| ^^
...
19 | pub url: String,
| ^^^
Check warning on line 6 in functions/fetch-quote/src/models.rs
github-actions / clippy
fields `all`, `first`, `last`, and `url_prefix` are never read
warning: fields `all`, `first`, `last`, and `url_prefix` are never read
--> functions/fetch-quote/src/models.rs:6:9
|
4 | pub struct Stats {
| ----- fields in this struct
5 | pub total: u32,
6 | pub all: String,
| ^^^
7 | pub first: String,
| ^^^^^
8 | pub last: String,
| ^^^^
9 | #[serde(rename = "urlPrefix")]
10 | pub url_prefix: String,
| ^^^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
Loading