1 2 3 4 5 6 7 8 9
//! 控制台驱动`Trait`定义 use core::fmt::Write; /// 控制台实现 pub trait ConsoleImpl: Write { /// 控制台驱动初始化 fn init(&mut self) {} }