Skip to content

Commit

Permalink
Add Eq impl for Error
Browse files Browse the repository at this point in the history
  • Loading branch information
maackle committed Jun 9, 2023
1 parent 22806e8 commit 2494624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::{error, fmt};

/// An enumeration of buffer creation errors
#[derive(Debug, Clone, Copy)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[non_exhaustive]
pub enum Error {
/// No choices were provided to the Unstructured::choose call
Expand Down

0 comments on commit 2494624

Please sign in to comment.