PathResult

Type Alias PathResult 

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

Cross-platform path result type

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(PathError)

Contains the error value