Skip to content

Commit

Permalink
chore: Fix v1.63 clippy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Nukesor committed Aug 15, 2022
1 parent 0562cea commit 832dbda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/style/column.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/// All percental boundaries will be ignored, if:
/// - you aren't using one of ContentArrangement::{Dynamic, DynamicFullWidth}
/// - the width of the table/terminal cannot be determined.
#[derive(Copy, Clone, Debug, PartialEq)]
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum ColumnConstraint {
/// This will completely hide a column.
Hidden,
Expand All @@ -22,7 +22,7 @@ pub enum ColumnConstraint {
Boundaries { lower: Width, upper: Width },
}

#[derive(Copy, Clone, Debug, PartialEq)]
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum Width {
/// A fixed amount of characters.
/// This can be used to specify an upper/lower boundary as well as a fixed size for the column.
Expand Down

0 comments on commit 832dbda

Please sign in to comment.