Skip to content

tentative changes to #93 #320

tentative changes to #93

tentative changes to #93 #320

GitHub Actions / clippy failed Nov 18, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (3)

src/report.rs|180 col 1| warning: missing documentation for a trait
--> src/report.rs:180:1
|
180 | pub trait Diagnose<'s, T> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^
src/report.rs|181 col 5| warning: missing documentation for an associated type
--> src/report.rs:181:5
|
181 | type Error: Enrich<'s>;
| ^^^^^^^^^^^^^^^^^^^^^^
src/report.rs|190 col 5| warning: missing documentation for a method
--> src/report.rs:190:5
|
190 | / fn diagnose_with<F, S>(self, f: F) -> Result<T, Enriched<'s, Self::Error>>
191 | | where
192 | | F: FnOnce() -> S,
193 | | S: Into<<Self::Error as Enrich<'s>>::Subject>;
| |______________________________________________________^

Filtered Findings (0)

Annotations

Check warning on line 180 in src/report.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

[clippy] src/report.rs#L180

warning: missing documentation for a trait
   --> src/report.rs:180:1
    |
180 | pub trait Diagnose<'s, T> {
    | ^^^^^^^^^^^^^^^^^^^^^^^^^
Raw output
src/report.rs:180:1:w:warning: missing documentation for a trait
   --> src/report.rs:180:1
    |
180 | pub trait Diagnose<'s, T> {
    | ^^^^^^^^^^^^^^^^^^^^^^^^^


__END__

Check warning on line 181 in src/report.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

[clippy] src/report.rs#L181

warning: missing documentation for an associated type
   --> src/report.rs:181:5
    |
181 |     type Error: Enrich<'s>;
    |     ^^^^^^^^^^^^^^^^^^^^^^
Raw output
src/report.rs:181:5:w:warning: missing documentation for an associated type
   --> src/report.rs:181:5
    |
181 |     type Error: Enrich<'s>;
    |     ^^^^^^^^^^^^^^^^^^^^^^


__END__

Check warning on line 190 in src/report.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

[clippy] src/report.rs#L190

warning: missing documentation for a method
   --> src/report.rs:190:5
    |
190 | /     fn diagnose_with<F, S>(self, f: F) -> Result<T, Enriched<'s, Self::Error>>
191 | |     where
192 | |         F: FnOnce() -> S,
193 | |         S: Into<<Self::Error as Enrich<'s>>::Subject>;
    | |______________________________________________________^
Raw output
src/report.rs:190:5:w:warning: missing documentation for a method
   --> src/report.rs:190:5
    |
190 | /     fn diagnose_with<F, S>(self, f: F) -> Result<T, Enriched<'s, Self::Error>>
191 | |     where
192 | |         F: FnOnce() -> S,
193 | |         S: Into<<Self::Error as Enrich<'s>>::Subject>;
    | |______________________________________________________^


__END__