pub type Result<T> = Result<T, LoggingError>;
Expand description
Result type for logging operations
Note: Use LoggingResult
to avoid conflicts with std::result::Result
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(LoggingError),
}
pub type Result<T> = Result<T, LoggingError>;
Result type for logging operations
Note: Use LoggingResult
to avoid conflicts with std::result::Result
pub enum Result<T> {
Ok(T),
Err(LoggingError),
}