fix(clippy): clippy 1.83 lints (#12150)

This commit is contained in:
RoloEdits 2024-12-02 06:23:32 -08:00 committed by GitHub
parent e1d1a5c5a1
commit 5ba97ba41e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 37 additions and 45 deletions

View file

@ -212,7 +212,7 @@ impl<'a> From<Cow<'a, str>> for Span<'a> {
#[derive(Debug, Default, Clone, PartialEq, Eq)]
pub struct Spans<'a>(pub Vec<Span<'a>>);
impl<'a> Spans<'a> {
impl Spans<'_> {
/// Returns the width of the underlying string.
///
/// ## Examples

View file

@ -123,7 +123,7 @@ impl<'a> Block<'a> {
}
}
impl<'a> Widget for Block<'a> {
impl Widget for Block<'_> {
fn render(self, area: Rect, buf: &mut Buffer) {
if area.area() == 0 {
return;

View file

@ -129,7 +129,7 @@ impl<'a> Paragraph<'a> {
}
}
impl<'a> Widget for Paragraph<'a> {
impl Widget for Paragraph<'_> {
fn render(mut self, area: Rect, buf: &mut Buffer) {
buf.set_style(area, self.style);
let text_area = match self.block.take() {

View file

@ -39,7 +39,7 @@ impl<'a, 'b> WordWrapper<'a, 'b> {
}
}
impl<'a, 'b> LineComposer<'a> for WordWrapper<'a, 'b> {
impl<'a> LineComposer<'a> for WordWrapper<'a, '_> {
fn next_line(&mut self) -> Option<(&[StyledGrapheme<'a>], u16)> {
if self.max_line_width == 0 {
return None;
@ -152,7 +152,7 @@ impl<'a, 'b> LineTruncator<'a, 'b> {
}
}
impl<'a, 'b> LineComposer<'a> for LineTruncator<'a, 'b> {
impl<'a> LineComposer<'a> for LineTruncator<'a, '_> {
fn next_line(&mut self) -> Option<(&[StyledGrapheme<'a>], u16)> {
if self.max_line_width == 0 {
return None;

View file

@ -34,7 +34,7 @@ pub struct Cell<'a> {
style: Style,
}
impl<'a> Cell<'a> {
impl Cell<'_> {
/// Set the `Style` of this cell.
pub fn style(mut self, style: Style) -> Self {
self.style = style;
@ -351,7 +351,7 @@ impl TableState {
}
// impl<'a> StatefulWidget for Table<'a> {
impl<'a> Table<'a> {
impl Table<'_> {
// type State = TableState;
pub fn render_table(
@ -486,7 +486,7 @@ fn render_cell(buf: &mut Buffer, cell: &Cell, area: Rect, truncate: bool) {
}
}
impl<'a> Widget for Table<'a> {
impl Widget for Table<'_> {
fn render(self, area: Rect, buf: &mut Buffer) {
let mut state = TableState::default();
Table::render_table(self, area, buf, &mut state, false);