pub type AsyncResult<T> = Pin<Box<dyn Future<Output = Result<T, YufmathError>> + Send>>;
异步计算结果
#[repr(transparent)]pub struct AsyncResult<T> { /* private fields */ }