Remove redundant 'status' field.

This commit is contained in:
asivery 2024-03-10 12:01:31 +01:00
parent ae6ae5ff9e
commit f1de5bff2a

View file

@ -99,7 +99,6 @@ pub struct DeviceId {
pub struct NetMD {
usb_interface: UsbInterface,
model: DeviceId,
status: Option<Status>,
}
impl NetMD {
@ -132,7 +131,6 @@ impl NetMD {
Ok(Self {
usb_interface,
model,
status: None,
})
}