extern crate futures; use futures::{future, Future}; fn main() { // future::ok 會直接建一個完成,並且有結果的Future let fut = future::ok::<i32, ...
確定! 回上一頁