Result

Type Alias Result 

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

@acp:summary “Result type alias for ACP operations”

Aliased Type§

pub enum Result<T> {
    Ok(T),
    Err(AcpError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AcpError)

Contains the error value