From 66cca169f1266606dd8789aa2bff9bbbfa6dd28e Mon Sep 17 00:00:00 2001 From: Greg Heartsfield Date: Sat, 15 Oct 2022 16:07:29 -0500 Subject: [PATCH] wip: remove unused struct --- src/delegation.rs | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/delegation.rs b/src/delegation.rs index 9fc9eab..f862a4e 100644 --- a/src/delegation.rs +++ b/src/delegation.rs @@ -43,6 +43,7 @@ pub enum Field { Kind, CreatedAt, } + impl FromStr for Field { type Err = Error; fn from_str(value: &str) -> Result { @@ -80,12 +81,6 @@ impl FromStr for Operator { } } -//#[derive(Serialize, Deserialize, PartialEq, Eq, Debug, Clone)] -/// Values are the data associated with a restriction. For now, these can only be a single numbers. -//pub enum Value { -// Number(u64), -//} - #[derive(Serialize, Deserialize, PartialEq, Eq, Debug, Clone)] pub struct ConditionQuery { pub(crate) conditions: Vec, @@ -231,7 +226,7 @@ mod tests { #[test] fn parse_multi_conditions() -> Result<()> { // given an empty condition query, produce an empty vector - let kind_cq = ConditionQuery { + let cq = ConditionQuery { conditions: vec![ Condition { field: Field::Kind, @@ -257,7 +252,7 @@ mod tests { }; let parsed = "kind>10000&kind<20000&kind!10001&created_at<1665867123".parse::()?; - assert_eq!(parsed, kind_cq); + assert_eq!(parsed, cq); Ok(()) } }