Skip to main content

AgentResult

Type Alias AgentResult 

Source
pub type AgentResult<T> = Result<T, AgentConfigError>;
Expand description

配置结果类型

Aliased Type§

pub enum AgentResult<T> {
    Ok(T),
    Err(AgentConfigError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AgentConfigError)

Contains the error value