pub type Result<T> = Result<T, UrdfError>;
Alias for a Result with the error type UrdfError.
Result
UrdfError
enum Result<T> { Ok(T), Err(UrdfError), }
Contains the success value
Contains the error value