From 60b12df62ed02da2c4e09d5c681c66029348c818 Mon Sep 17 00:00:00 2001 From: Vitalii Bursov Date: Sat, 6 Apr 2024 20:43:13 +0300 Subject: [PATCH] Apply rustfmt formatting fix --- tests/helper_example/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/helper_example/mod.rs b/tests/helper_example/mod.rs index 9cfcd74..1438732 100644 --- a/tests/helper_example/mod.rs +++ b/tests/helper_example/mod.rs @@ -1,8 +1,8 @@ //! An example how to "extend"/add helper methods to //! `Device` by implementing a new trait for `Device` //! in a separate module. -use usbd_class_tester::prelude::*; use usb_device::class::UsbClass; +use usbd_class_tester::prelude::*; pub trait DeviceExt { fn custom_get_status(&mut self, cls: &mut T) -> core::result::Result, AnyUsbError>;