pub type ManagerResult<T> = Result<T, Box<dyn Error + Send + Sync>>;
Expand description
Result type for manager operations.
This type alias is used throughout the plugin system for operations that can fail. It provides a consistent error handling interface for manager implementations.
Aliased Type§
pub enum ManagerResult<T> {
Ok(T),
Err(Box<dyn Error + Send + Sync>),
}