ibr: Fix syntax error.

Emmanuel Gil Peyrot created

Change summary

src/ibr.rs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

Detailed changes

src/ibr.rs 🔗

@@ -26,9 +26,9 @@ pub struct Query {
     //pub oob: Option<Oob>,
 }
 
-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<Element> for Query {
     type Err = Error;