ManagerResult

Type Alias ManagerResult 

Source
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>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Box<dyn Error + Send + Sync>)

Contains the error value