Function futures_util::future::ok [−][src]
Expand description
Create a future that is immediately ready with a success value.
Examples
use futures::future;
let a = future::ok::<i32, i32>(1);
assert_eq!(a.await, Ok(1));
Create a future that is immediately ready with a success value.
use futures::future;
let a = future::ok::<i32, i32>(1);
assert_eq!(a.await, Ok(1));