pub type Result<T, E = Error<'static>> = Result<T, E>;Expand description
Standard Result type for OSAL-RS operations.
Uses Error as the default error type with 'static lifetime.
For custom lifetimes, use core::result::Result<T, Error<'a>>.
Aliased Type§
pub enum Result<T, E = Error<'static>> {
Ok(T),
Err(E),
}