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