реализация:
impl DavFile for VirtualFile {
fn metadata(&mut self) -> FsFuture<Box<dyn DavMetaData>> {
async move { Ok(self.metadata.clone()) }.boxed()
}
}
DavFile
fsFuture - https://docs.rs/webdav-handler/0.2.0-alpha.4/webdav_handler/fs/type.FsFuture.html
Ошибка такая:
error[E0308]: mismatched types
--> src/webdav.rs:348:9
|
348 | async move { Ok(self.metadata.clone()) }.boxed()
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| |
| expected struct `std::boxed::Box`, found struct `webdav::Metadata`
| help: you need to pin and box this expression: `Box::pin(async move { Ok(self.metadata.clone()) }.boxed())`
|
= note: expected struct `std::pin::Pin<std::boxed::Box<dyn core::future::future::Future<Output = std::result::Result<std::boxed::Box<(dyn webdav_handler::fs::DavMetaData + 'static)>, webdav_handler::fs::FsError>> + std::marker::Send>>`
found struct `std::pin::Pin<std::boxed::Box<dyn core::future::future::Future<Output = std::result::Result<webdav::Metadata, _>> + std::marker::Send>>`
И нет, совет компилятора не помогает. Что я делаю не так?
Возвращаемое значение должно быть в боксе Ok(Box::new(self.metadata.clone()))
Обсуждают сегодня