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