From 7d3f868cac77df8bafaeaf6d0900a2d95512cbe9 Mon Sep 17 00:00:00 2001 From: meh Date: Mon, 25 Apr 2016 17:18:07 +0200 Subject: [PATCH] device: remove useless struct --- src/device/mod.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/device/mod.rs b/src/device/mod.rs index c128458..31a22b9 100644 --- a/src/device/mod.rs +++ b/src/device/mod.rs @@ -1,14 +1,5 @@ -#[derive(Clone, Copy, PartialEq, Eq, Default, Debug)] -pub struct Id { - pub bus: u16, - pub vendor: u16, - pub product: u16, - pub version: u16, -} - mod builder; pub use self::builder::Builder; mod device; pub use self::device::Device; -