Skip to content

docs: Fix the version number that cannot be pulled (#247) #5

docs: Fix the version number that cannot be pulled (#247)

docs: Fix the version number that cannot be pulled (#247) #5

Triggered via push April 4, 2025 12:12
Status Success
Total duration 28s
Artifacts

docs-build.yml

on: push
docs-preview  /  build
18s
docs-preview / build
Fit to window
Zoom out
Zoom in

Annotations

5 warnings
doc list item overindented: elasticsearch/src/http/transport.rs#L481
warning: doc list item overindented --> elasticsearch/src/http/transport.rs:481:9 | 481 | /// identifies the deployment instance. | ^^^^^^^^^^^^^^ help: try using ` ` (2 spaces) | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_overindented_list_items
the following explicit lifetimes could be elided: 'a: elasticsearch/src/http/request.rs#L175
warning: the following explicit lifetimes could be elided: 'a --> elasticsearch/src/http/request.rs:175:6 | 175 | impl<'a> Body for &'a str { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 175 - impl<'a> Body for &'a str { 175 + impl Body for &str { |
the following explicit lifetimes could be elided: 'a: elasticsearch/src/http/request.rs#L161
warning: the following explicit lifetimes could be elided: 'a --> elasticsearch/src/http/request.rs:161:6 | 161 | impl<'a> Body for &'a [u8] { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 161 - impl<'a> Body for &'a [u8] { 161 + impl Body for &[u8] { |
the following explicit lifetimes could be elided: 'a: elasticsearch/src/http/request.rs#L53
warning: the following explicit lifetimes could be elided: 'a --> elasticsearch/src/http/request.rs:53:6 | 53 | impl<'a, B: ?Sized> Body for &'a B | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `#[warn(clippy::needless_lifetimes)]` on by default help: elide the lifetimes | 53 - impl<'a, B: ?Sized> Body for &'a B 53 + impl<B: ?Sized> Body for &B |
doc list item overindented: elasticsearch/src/lib.rs#L57
warning: doc list item overindented --> elasticsearch/src/lib.rs:57:5 | 57 | //! caution because it is possible that breaking changes are made to these APIs in a minor version. | ^^^ help: try using ` ` (2 spaces) | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_overindented_list_items = note: `#[warn(clippy::doc_overindented_list_items)]` on by default