From 0bec19c224edf5a9452d6b4e51fb9c403804cfe9 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Wed, 16 May 2018 15:16:15 +0200 Subject: [PATCH] ibr: Fix syntax error. --- src/ibr.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ibr.rs b/src/ibr.rs index 72c02b2b..6964755c 100644 --- a/src/ibr.rs +++ b/src/ibr.rs @@ -26,9 +26,9 @@ pub struct Query { //pub oob: Option, } -impl IqGetPayload for Query; -impl IqSetPayload for Query; -impl IqResultPayload for Query; +impl IqGetPayload for Query {} +impl IqSetPayload for Query {} +impl IqResultPayload for Query {} impl TryFrom for Query { type Err = Error;