1 2 3 4 5 6 7 8 9
//! Protocol definitions. //! //! Protocols are sets of related functionality identified by a unique //! ID. They can be implemented by a UEFI driver or occasionally by a //! UEFI application. pub mod console; pub mod device_path; pub mod rng;