Skip to content

Towards an implementation of proper early error messages

Sign in for the full log view
GitHub Actions / clippy failed Oct 25, 2024 in 1s

clippy

7 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 7
Warning 0
Note 0
Help 0

Versions

  • rustc 1.84.0-nightly (a93c1718c 2024-10-24)
  • cargo 1.84.0-nightly (cf53cc54b 2024-10-18)
  • clippy 0.1.84 (a93c1718c8 2024-10-24)

Annotations

Check failure on line 21 in scopegraphs/src/future_wrapper.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

missing documentation for an associated function

error: missing documentation for an associated function
  --> scopegraphs/src/future_wrapper.rs:21:5
   |
21 |     pub fn new(f: impl Future<Output = T> + 'fut) -> Self {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Check failure on line 12 in scopegraphs/src/future_wrapper.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

missing documentation for a struct

error: missing documentation for a struct
  --> scopegraphs/src/future_wrapper.rs:12:1
   |
12 | pub struct FutureWrapper<'fut, T>(pub Shared<Pin<Box<dyn Future<Output = T> + 'fut>>>);
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Check failure on line 24 in scopegraphs/src/containers/path.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

missing documentation for an associated type

error: missing documentation for an associated type
  --> scopegraphs/src/containers/path.rs:24:5
   |
24 |     type EnvContainerWf: EnvContainer<'sg, 'rslv, LABEL, DATA, DWFO>;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Check failure on line 22 in scopegraphs/src/containers/path.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

missing documentation for a trait

error: missing documentation for a trait
  --> scopegraphs/src/containers/path.rs:22:1
   |
22 | pub trait PathContainerWf<'sg, 'rslv, LABEL: 'sg, DATA: 'sg, DWFO>: PathContainer<'sg, 'rslv, LABEL, DATA, EnvContainer = Self::EnvContainerWf...
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Check failure on line 91 in scopegraphs/src/containers/scope.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

missing documentation for an associated type

error: missing documentation for an associated type
  --> scopegraphs/src/containers/scope.rs:91:5
   |
91 |     type PathContainerWf: PathContainerWf<'sg, 'rslv, LABEL, DATA, DWFO>;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Check failure on line 34 in scopegraphs/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

missing documentation for a module

error: missing documentation for a module
  --> scopegraphs/src/lib.rs:34:1
   |
34 | pub mod future_wrapper;
   | ^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D missing-docs` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(missing_docs)]`

Check failure on line 2 in scopegraphs/src/containers/path.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused import: `DataEquivalence`

error: unused import: `DataEquivalence`
 --> scopegraphs/src/containers/path.rs:2:22
  |
2 | use crate::resolve::{DataEquivalence, Env, Path, ResolvedPath};
  |                      ^^^^^^^^^^^^^^^
  |
  = note: `-D unused-imports` implied by `-D warnings`
  = help: to override `-D warnings` add `#[allow(unused_imports)]`