From 048d4fa5529bf33e21f11873792cdacfcaf7793f Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Sun, 16 Dec 2018 12:28:58 +0100 Subject: Use the dyn syntax for trait objects This patch changes the type of trait objects from `Trait` to `dyn Trait`. This fixes bare-trait-object compiler warnings. --- src/device.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/device.rs') diff --git a/src/device.rs b/src/device.rs index fc07baf..cbc826e 100644 --- a/src/device.rs +++ b/src/device.rs @@ -536,7 +536,7 @@ fn connect_model(model: Model) -> bool { } impl DeviceWrapper { - fn device(&self) -> &Device { + fn device(&self) -> &dyn Device { match *self { DeviceWrapper::Storage(ref storage) => storage, DeviceWrapper::Pro(ref pro) => pro, -- cgit v1.2.1