pub type RuntimeResult<T = ()> = Result<T, RuntimeError>;Expand description
A result returned by an ArceOS runtime-owned operation.
Aliased Type§
pub enum RuntimeResult<T = ()> {
Ok(T),
Err(RuntimeError),
}pub type RuntimeResult<T = ()> = Result<T, RuntimeError>;A result returned by an ArceOS runtime-owned operation.
pub enum RuntimeResult<T = ()> {
Ok(T),
Err(RuntimeError),
}