pub enum UefiConsoleMode {
Default = 0,
COM1 = 1,
COM2 = 2,
None = 3,
}
Variants§
Default = 0
video+kbd (having a head)
COM1 = 1
headless with COM1 serial console
COM2 = 2
headless with COM2 serial console
None = 3
headless
Trait Implementations§
Source§impl Debug for UefiConsoleMode
impl Debug for UefiConsoleMode
Auto Trait Implementations§
impl Freeze for UefiConsoleMode
impl RefUnwindSafe for UefiConsoleMode
impl Send for UefiConsoleMode
impl Sync for UefiConsoleMode
impl Unpin for UefiConsoleMode
impl UnwindSafe for UefiConsoleMode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more