cryptomilk commented on issue #6117:
URL: https://github.com/apache/opendal/issues/6117#issuecomment-2838950644

   ```
   error[E0277]: `std::result::Result<services::memcached::binary::Connection, 
_>` is not a future                                                             
                                
      --> src/services/memcached/backend.rs:267:92                              
                                                                                
                               
       |                                                                        
                                                                                
                               
   267 |       async fn connect(&self) -> impl Future<Output = 
Result<Self::Connection, Self::Error>> {                                        
                                                
       |  
____________________________________________________________________________________________^
                                                                                
        
   268 | |         let conn = TcpStream::connect(&self.address)                 
                                                                                
                               
   269 | |             .await
   270 | |             .map_err(new_std_io_error)?;                             
                                                                                
                               
   ...   |                                                                      
                                                                                
                               
   276 | |         Ok(conn)                                                     
                                                                                
                               
   277 | |     }                                                                
                 
       | |_____^ `std::result::Result<services::memcached::binary::Connection, 
_>` is not a future                                                             
                                
       |                                                                        
                                                                                
                               
       = help: the trait `futures::Future` is not implemented for 
`std::result::Result<services::memcached::binary::Connection, _>`
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to