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