use super::File; use futures::{Future, Poll}; use std::fs::File as StdFile; use std::io; use std::path::Path; /// Future returned by `File::create` and resolves to a `File` instance. #[derive(Debug)] pub struct CreateFuture
{ path: P, } impl
CreateFuture
where P: AsRef Future for CreateFuture
where P: AsRef