Tokio运行时介绍

Posted by JoshSu Blog on September 1, 2021
#[derive(Debug)]
pub struct Runtime {
		/// Task executor
		kind: Kind,

		/// Handle to runtime, also contains driver handles
		handle: Handle,

		/// Blocking pool handle, used to signal shutdown
		blocking_pool: BlockingPool,
}