pub type Result<T> = SdkResult<T>;
pub enum Result<T> { Ok(T), Err(SdkError), }
Contains the success value
Contains the error value