From 3388fd16833842310fbb8bfcd213ed87800e2559 Mon Sep 17 00:00:00 2001 From: gwenn Date: Sat, 7 Nov 2020 12:02:33 +0100 Subject: [PATCH] Remove #[non_exhaustive] attribute on IndexConstraintOp --- src/vtab/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/vtab/mod.rs b/src/vtab/mod.rs index 8855302..76d323f 100644 --- a/src/vtab/mod.rs +++ b/src/vtab/mod.rs @@ -261,7 +261,6 @@ pub trait CreateVTab<'vtab>: VTab<'vtab> { /// See [Virtual Table Constraint Operator Codes](https://sqlite.org/c3ref/c_index_constraint_eq.html) for details. #[derive(Debug, PartialEq)] #[allow(non_snake_case, non_camel_case_types, missing_docs)] -#[non_exhaustive] pub enum IndexConstraintOp { SQLITE_INDEX_CONSTRAINT_EQ, SQLITE_INDEX_CONSTRAINT_GT,