CI #357
Annotations
8 warnings
crates/azure/src/lib.rs#L59
warning: unused variable: `path`
--> crates/azure/src/service.rs:59:49
|
59 | async fn open<P: AsRef<Path> + Send>(&self, path: P) -> io::Result<Option<Bytes>> {
| ^^^^ help: if this is intentional, prefix it with an underscore: `_path`
|
= note: `#[warn(unused_variables)]` on by default
|
crates/azure/src/lib.rs#L74
warning: unused variable: `path`
--> crates/azure/src/service.rs:74:49
|
74 | async fn blob<P: AsRef<Path> + Send>(&self, path: P) -> io::Result<Option<Blob>> {
| ^^^^ help: if this is intentional, prefix it with an underscore: `_path`
|
crates/azure/src/lib.rs#L90
warning: unused variable: `path`
--> crates/azure/src/service.rs:90:9
|
90 | path: Option<P>,
| ^^^^ help: if this is intentional, prefix it with an underscore: `_path`
|
crates/azure/src/lib.rs#L107
warning: unused variable: `path`
--> crates/azure/src/service.rs:107:51
|
107 | async fn delete<P: AsRef<Path> + Send>(&self, path: P) -> io::Result<()> {
| ^^^^ help: if this is intentional, prefix it with an underscore: `_path`
|
crates/azure/src/lib.rs#L122
warning: unused variable: `path`
--> crates/azure/src/service.rs:122:51
|
122 | async fn exists<P: AsRef<Path> + Send>(&self, path: P) -> io::Result<bool> {
| ^^^^ help: if this is intentional, prefix it with an underscore: `_path`
|
crates/azure/src/lib.rs#L137
warning: unused variable: `path`
--> crates/azure/src/service.rs:137:51
|
137 | async fn upload<P: AsRef<Path> + Send>(&self, path: P, options: UploadRequest) -> io::Result<()> {
| ^^^^ help: if this is intentional, prefix it with an underscore: `_path`
|
crates/azure/src/lib.rs#L137
warning: unused variable: `options`
--> crates/azure/src/service.rs:137:60
|
137 | async fn upload<P: AsRef<Path> + Send>(&self, path: P, options: UploadRequest) -> io::Result<()> {
| ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_options`
|
|
The logs for this run have expired and are no longer available.
Loading