We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b552db6 + 7bd95e4 commit abba3e1Copy full SHA for abba3e1
posts/2022-09-22-Rust-1.64.0.md
@@ -103,7 +103,7 @@ impl StorageRequest {
103
// The new implementations:
104
// 1. create a new named future type
105
// 2. implement `IntoFuture` for `StorageRequest`
106
-pub type StorageRequestFuture = Pin<Box<dyn Future<Output = Result<StorageResponse, Error> + Send + 'static>>
+pub type StorageRequestFuture = Pin<Box<dyn Future<Output = Result<StorageResponse, Error>> + Send + 'static>>
107
impl IntoFuture for StorageRequest {
108
type IntoFuture = StorageRequestFuture;
109
type Output = <StorageRequestFuture as Future>::Output;
0 commit comments