use super::blocking_io; use futures::{Future, Poll}; use std::fs::{self, Metadata}; use std::io; use std::path::Path; /// Queries the file system metadata for a path. /// /// This is an async version of [`std::fs::symlink_metadata`][std] /// /// [std]: https://doc.rust-lang.org/std/fs/fn.symlink_metadata.html pub fn symlink_metadata

(path: P) -> SymlinkMetadataFuture

where P: AsRef + Send + 'static, { SymlinkMetadataFuture::new(path) } /// Future returned by `symlink_metadata`. #[derive(Debug)] pub struct SymlinkMetadataFuture

where P: AsRef + Send + 'static, { path: P, } impl

SymlinkMetadataFuture

where P: AsRef + Send + 'static, { pub(crate) fn new(path: P) -> Self { Self { path } } } impl

Future for SymlinkMetadataFuture

where P: AsRef + Send + 'static, { type Item = Metadata; type Error = io::Error; fn poll(&mut self) -> Poll { blocking_io(|| fs::symlink_metadata(&self.path)) } }