pub type Result<T, P: OwnedPathType> = Result<T, Error<P>>;Expand description
The result type for this library.
See the Error enum for the errors that can happen.
Aliased Type§
pub enum Result<T, P: OwnedPathType> {
Ok(T),
Err(Error<P>),
}