Add CreateFolder operation (#26) #360
Annotations
3 warnings
[clippy] src/types/soap.rs#L348:
src/types/soap.rs#L348
warning: unneeded `return` statement
--> src/types/soap.rs:348:9
|
348 | return Ok(Self::from_bytes(content));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `#[warn(clippy::needless_return)]` on by default
help: remove `return`
|
348 - return Ok(Self::from_bytes(content));
348 + Ok(Self::from_bytes(content))
|
|
Build & Test Project
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
[clippy] src/types/soap.rs#L348:
src/types/soap.rs#L348
warning: unneeded `return` statement
--> src/types/soap.rs:348:9
|
348 | return Ok(Self::from_bytes(content));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `#[warn(clippy::needless_return)]` on by default
help: remove `return`
|
348 - return Ok(Self::from_bytes(content));
348 + Ok(Self::from_bytes(content))
|
|