1//! Host error definition. 2 3/// Error raised by the host. 4#[derive(Debug)] 5pub struct HostError { 6 /// The error code 7 pub code: i32, 8}