Searched refs:BcbError (Results 1 – 2 of 2) sorted by relevance
31 pub enum BcbError { enum36 pub type Result<T> = core::result::Result<T, BcbError>;78 .ok_or(BcbError::InvalidInput("Cannot read BCB message from buffer"))? in from_bytes_ref()86 .map_err(|_| BcbError::InvalidInput("Cannot read BCB command"))? in boot_mode()88 .map_err(|_| BcbError::InvalidInput("Cannot convert BCB command to string"))?; in boot_mode()94 _ => Err(BcbError::InvalidInput("Wrong BCB command")), in boot_mode()
24 use misc::BcbError;49 BcbError(BcbError),