reviewdog [clippy] report
reported by reviewdog 🐶
Findings (4)
src/diagnostic.rs|189 col 1| warning: missing documentation for a trait
--> src/diagnostic.rs:189:1
|
189 | pub trait Diagnose<'s, T> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^
src/diagnostic.rs|190 col 5| warning: missing documentation for an associated type
--> src/diagnostic.rs:190:5
|
190 | type Error: Diagnostic<'s>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
src/diagnostic.rs|193 col 5| warning: missing documentation for a method
--> src/diagnostic.rs:193:5
|
193 | / fn diagnose(
194 | | self,
195 | | subject: impl Into<<Self::Error as Diagnostic<'s>>::Subject>,
196 | | ) -> Result<T, Report<Self::Error, <Self::Error as Diagnostic<'s>>::Subject>>;
| |________________________^
src/diagnostic.rs|199 col 5| warning: missing documentation for a method
--> src/diagnostic.rs:199:5
|
199 | / fn diagnose_with<F, S>(
200 | | self,
201 | | f: F,
202 | | ) -> Result<T, Report<Self::Error, <Self::Error as Diagnostic<'s>>::Subject>>
203 | | where
204 | | F: FnOnce() -> S,
205 | | S: Into<<Self::Error as Diagnostic<'s>>::Subject>;
| |^
Filtered Findings (0)
Annotations
Check warning on line 189 in src/diagnostic.rs
github-actions / clippy
[clippy] src/diagnostic.rs#L189
warning: missing documentation for a trait
--> src/diagnostic.rs:189:1
|
189 | pub trait Diagnose<'s, T> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^
Raw output
src/diagnostic.rs:189:1:w:warning: missing documentation for a trait
--> src/diagnostic.rs:189:1
|
189 | pub trait Diagnose<'s, T> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^
__END__
Check warning on line 190 in src/diagnostic.rs
github-actions / clippy
[clippy] src/diagnostic.rs#L190
warning: missing documentation for an associated type
--> src/diagnostic.rs:190:5
|
190 | type Error: Diagnostic<'s>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
Raw output
src/diagnostic.rs:190:5:w:warning: missing documentation for an associated type
--> src/diagnostic.rs:190:5
|
190 | type Error: Diagnostic<'s>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
__END__
Check warning on line 193 in src/diagnostic.rs
github-actions / clippy
[clippy] src/diagnostic.rs#L193
warning: missing documentation for a method
--> src/diagnostic.rs:193:5
|
193 | / fn diagnose(
194 | | self,
195 | | subject: impl Into<<Self::Error as Diagnostic<'s>>::Subject>,
196 | | ) -> Result<T, Report<Self::Error, <Self::Error as Diagnostic<'s>>::Subject>>;
| |__________________________________________________________________________________^
Raw output
src/diagnostic.rs:193:5:w:warning: missing documentation for a method
--> src/diagnostic.rs:193:5
|
193 | / fn diagnose(
194 | | self,
195 | | subject: impl Into<<Self::Error as Diagnostic<'s>>::Subject>,
196 | | ) -> Result<T, Report<Self::Error, <Self::Error as Diagnostic<'s>>::Subject>>;
| |__________________________________________________________________________________^
__END__
Check warning on line 199 in src/diagnostic.rs
github-actions / clippy
[clippy] src/diagnostic.rs#L199
warning: missing documentation for a method
--> src/diagnostic.rs:199:5
|
199 | / fn diagnose_with<F, S>(
200 | | self,
201 | | f: F,
202 | | ) -> Result<T, Report<Self::Error, <Self::Error as Diagnostic<'s>>::Subject>>
203 | | where
204 | | F: FnOnce() -> S,
205 | | S: Into<<Self::Error as Diagnostic<'s>>::Subject>;
| |__________________________________________________________^
Raw output
src/diagnostic.rs:199:5:w:warning: missing documentation for a method
--> src/diagnostic.rs:199:5
|
199 | / fn diagnose_with<F, S>(
200 | | self,
201 | | f: F,
202 | | ) -> Result<T, Report<Self::Error, <Self::Error as Diagnostic<'s>>::Subject>>
203 | | where
204 | | F: FnOnce() -> S,
205 | | S: Into<<Self::Error as Diagnostic<'s>>::Subject>;
| |__________________________________________________________^
__END__