pub type ImplementationResult<'a, T> = Result<T, GLLImplementationError<'a>>;Expand description
Result for something that can only have issues in the implementation.
Aliased Type§
pub enum ImplementationResult<'a, T> {
Ok(T),
Err(GLLImplementationError<'a>),
}