Skip to content

Commit

Permalink
core: use Copy in TAIT to fix clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
joboet committed May 23, 2024
1 parent fde4a22 commit c398b2c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion library/core/src/slice/ascii.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ impl [u8] {
}
}

type EscapeByte = impl (Fn(&u8) -> ascii::EscapeDefault) + Clone;
type EscapeByte = impl (Fn(&u8) -> ascii::EscapeDefault) + Copy;

/// An iterator over the escaped version of a byte slice.
///
Expand Down
18 changes: 9 additions & 9 deletions library/core/src/str/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2764,15 +2764,15 @@ impl Default for &mut str {
}
}

type LinesMap = impl (Fn(&str) -> &str) + Clone;
type CharEscapeDebugContinue = impl (FnMut(char) -> char::EscapeDebug) + Clone;
type CharEscapeUnicode = impl (Fn(char) -> char::EscapeUnicode) + Clone;
type CharEscapeDefault = impl (Fn(char) -> char::EscapeDefault) + Clone;
type IsWhitespace = impl (Fn(char) -> bool) + Clone;
type IsAsciiWhitespace = impl (Fn(&u8) -> bool) + Clone;
type IsNotEmpty = impl (Fn(&&str) -> bool) + Clone;
type BytesIsNotEmpty<'a> = impl (FnMut(&&'a [u8]) -> bool) + Clone;
type UnsafeBytesToStr<'a> = impl (FnMut(&'a [u8]) -> &'a str) + Clone;
type LinesMap = impl (Fn(&str) -> &str) + Copy;
type CharEscapeDebugContinue = impl (FnMut(char) -> char::EscapeDebug) + Copy;
type CharEscapeUnicode = impl (Fn(char) -> char::EscapeUnicode) + Copy;
type CharEscapeDefault = impl (Fn(char) -> char::EscapeDefault) + Copy;
type IsWhitespace = impl (Fn(char) -> bool) + Copy;
type IsAsciiWhitespace = impl (Fn(&u8) -> bool) + Copy;
type IsNotEmpty = impl (Fn(&&str) -> bool) + Copy;
type BytesIsNotEmpty<'a> = impl (FnMut(&&'a [u8]) -> bool) + Copy;
type UnsafeBytesToStr<'a> = impl (FnMut(&'a [u8]) -> &'a str) + Copy;

// This is required to make `impl From<&str> for Box<dyn Error>` and `impl<E> From<E> for Box<dyn Error>` not overlap.
#[stable(feature = "rust1", since = "1.0.0")]
Expand Down

0 comments on commit c398b2c

Please sign in to comment.