diff options
| author | Yuval Adam <_@yuv.al> | 2018-07-30 21:49:15 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2018-07-30 21:49:15 +0300 |
| commit | d1fe53b99a44d9ffa4f1b21b13e8a686c30ceff8 (patch) | |
| tree | 3cda76b4def8d00b8f0bca71279e5e7deb4123d0 /src/devices/fc0013.rs | |
| parent | 59e2ae68353648364ba128ca6079157794eae1fc (diff) | |
Duplicate all teh codez
Diffstat (limited to 'src/devices/fc0013.rs')
| -rw-r--r-- | src/devices/fc0013.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/fc0013.rs b/src/devices/fc0013.rs index 2af58fb..028c36b 100644 --- a/src/devices/fc0013.rs +++ b/src/devices/fc0013.rs @@ -1,7 +1,7 @@ -use super::{DeviceInfo, Actions}; +use super::{DeviceInfo, Device}; pub struct FC0013 { - device: DeviceInfo + pub device: DeviceInfo } pub const DEVICE_INFO: DeviceInfo = DeviceInfo { @@ -13,14 +13,14 @@ pub const DEVICE_INFO: DeviceInfo = DeviceInfo { }; impl FC0013 { - fn new() -> FC0013 { + pub fn new() -> FC0013 { FC0013 { device: DEVICE_INFO } } } -impl Actions for FC0013 { +impl Device for FC0013 { fn init(&self) { println!("Init {}", self.device.name); } |
