Skip to content

Commit

Permalink
refactor: remove needless derives
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamAnimate committed Nov 22, 2024
1 parent 4616646 commit 49f25b0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use std::sync::atomic::{AtomicUsize, Ordering};

#[derive(PartialEq, Eq, Debug, Copy)]
#[derive(Debug, Copy)]
/// don't Box<SongControl> this value, or you're going to have a very hard time with .clone()
/// because it will panic.
/// :troll:
Expand Down Expand Up @@ -38,15 +38,14 @@ pub enum RenderMode {
NoSpace,
}

#[derive(PartialEq, Debug)]
#[derive(PartialEq)]
pub enum FileFormat {
Audio,

// and if no match
Other
}

#[derive(PartialEq)]
pub enum ConfigurationPath<'a> {
Default,
Custom(&'a str)
Expand Down

0 comments on commit 49f25b0

Please sign in to comment.