pub type Result<T> = Result<T, UniError>;
Result type returned by the SDK.
pub enum Result<T> { Ok(T), Err(UniError), }
Contains the success value
Contains the error value