Skip to main content

AgentClientResult

Type Alias AgentClientResult 

Source
pub type AgentClientResult<T> = Result<T, AgentClientError>;
Expand description

Result alias for agent client operations.

Aliased Type§

pub enum AgentClientResult<T> {
    Ok(T),
    Err(AgentClientError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AgentClientError)

Contains the error value