Skip to main content

PathResult

Type Alias PathResult 

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

Result type for path operations.

Aliased Type§

pub enum PathResult<T> {
    Ok(T),
    Err(ToolError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ToolError)

Contains the error value