derive Eq for Type

This commit is contained in:
Max Unsted 2022-04-17 20:34:30 +01:00 committed by Thom Chiovoloni
parent 4d06d2222f
commit 95941f6378

View File

@ -110,7 +110,7 @@ pub struct Null;
/// SQLite data types.
/// See [Fundamental Datatypes](https://sqlite.org/c3ref/c_blob.html).
#[derive(Clone, Debug, PartialEq)]
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum Type {
/// NULL
Null,