pub type Result<T> = Result<T, SdkError>;
The result type for the SDK.
pub enum Result<T> { Ok(T), Err(SdkError), }
Contains the success value
Contains the error value