pub type LogResult<T> = Result<T, LogError>;
Describe the result of operations in log SDK.
enum LogResult<T> { Ok(T), Err(LogError), }
Contains the success value
Contains the error value