pub type LogResult<T> = Result<T, LogError>;
Result type for Lie group logarithm operations
pub enum LogResult<T> { Ok(T), Err(LogError), }
Contains the success value
Contains the error value