Lines Matching refs:Error
28 pub enum Error { enum
33 Error, enumerator
49 impl Display for Error { implementation
52 Error::ArithmeticOverflow => write!(f, "Arithmetic Overflow"), in fmt()
53 Error::BootFailed => write!(f, "Failed to boot"), in fmt()
54 Error::Error => write!(f, "Generic error"), in fmt()
55 Error::MissingImage => write!(f, "Missing image required to boot system"), in fmt()
56 Error::NotImplemented => write!(f, "Functionality is not implemented"), in fmt()
57 Error::OperationProhibited => write!(f, "Operation is prohibited"), in fmt()
58 Error::Internal => write!(f, "Internal error"), in fmt()
59 Error::AvbOpsBusy => write!(f, "AvbOps were already borrowed"), in fmt()
60 Error::BufferOverlap => write!(f, "Buffers overlap"), in fmt()
146 GblNativeError(Error),
151 SafeMathError(safemath::Error),