We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2e8a759 + 865da0c commit 37fb0a0Copy full SHA for 37fb0a0
src/bin/uudoc.rs
@@ -172,7 +172,7 @@ struct MDWriter<'a, 'b> {
172
markdown: Option<String>,
173
}
174
175
-impl<'a, 'b> MDWriter<'a, 'b> {
+impl MDWriter<'_, '_> {
176
/// # Errors
177
/// Returns an error if the writer fails.
178
fn markdown(&mut self) -> io::Result<()> {
src/uu/chcon/src/chcon.rs
@@ -777,7 +777,7 @@ enum SELinuxSecurityContext<'t> {
777
String(Option<CString>),
778
779
780
-impl<'t> SELinuxSecurityContext<'t> {
+impl SELinuxSecurityContext<'_> {
781
fn to_c_string(&self) -> Result<Option<Cow<CStr>>> {
782
match self {
783
Self::File(context) => context
0 commit comments