//! Console APIs for virtual console devices.
/// Console I/O interface exposed by the hypervisor host.
#[crate::api_def]pubtraitConsoleIf{/// Writes raw bytes to the host console.
fnwrite_bytes(bytes:&[u8]);/// Reads bytes from the host console into `bytes`.
////// Returns the number of bytes read.
fnread_bytes(bytes:&mut [u8])->usize;}