pub type LoggingResult<T> = Result<T, LoggingError>;
Expand description
Preferred result type alias that doesn’t conflict with std::result::Result
Aliased Type§
pub enum LoggingResult<T> {
Ok(T),
Err(LoggingError),
}
pub type LoggingResult<T> = Result<T, LoggingError>;
Preferred result type alias that doesn’t conflict with std::result::Result
pub enum LoggingResult<T> {
Ok(T),
Err(LoggingError),
}