pub type Result<T, E = SDKError> = Result<T, E>;
A specialized Result type for SDK operations that return SDKError.
Result
SDKError
pub enum Result<T, E = SDKError> { Ok(T), Err(E), }
Contains the success value
Contains the error value