pub struct BasicDeviceManager {
serials: Vec<Box<dyn Serial>>,
}
Expand description
BasicDeviceManager
This struct manages basic I/O devices, such as serial ports. It provides methods to register, borrow, and manage serial devices. It is a part of the DeviceManager, which handles all devices and drivers.
§Fields
serials
: A vector of serial devices managed by this manager.
Fields§
§serials: Vec<Box<dyn Serial>>