-
I wrote this:
```rust
tokio::spawn(function_that_does_not_yet_exist());
```
and rust-analyzer generated
```rust
fn function_that_does_not_yet_exist() -> _ {
}
```
when I think it shou…
-
Please contact me via email at [ malek.ali@yellow-sic.com ]. I plan to develop a Python version of the Tauri framework. The attached screenshot shows the use of PyWry, Next.js and Vite. There are urge…
-
## Bug Report
### Version
0.1.29
### Platform
* Darwin 21.2.0
* Also tested on play.rust-lang.org
### Description
I added `tracing::instrument` to some of our code and sur…
-
I tried this code:
```rust
#![feature(generic_associated_types)]
#![feature(type_alias_impl_trait)]
use std::future::Future;
pub trait FutureIterator: 'static {
type Iterator;
t…
-
I was following the issue here https://github.com/eaze/tracing-honeycomb/issues/9, and it seems that some environments are having issues with this library (I myself am not one of these currently). The…
-
`Command::spawn()` in the rust stdlib unconditionally calls `anon_pipe` here: https://github.com/rust-lang/rust/blob/master/library/std/src/sys/unix/process/process_unix.rs#L62
`anon_pipe` on Linux…
-
New to rust, I am trying to have my callback function be passed into my thread, this call back function will be called multiple times. However, it seems I can't have my cb shared between threads. ``F`…
-
Currently Rust compiler does not provide any guarantee for ABI stability across FFI boundaries, so the calling convention, trait object layout, etc. might be different across compiler versions or even…
-
## Expected Behavior
`HttpServer::new` should support asynchronous application factories as the argument.
## Current Behavior
```rust
HttpServer::new(move || async move { ... });
```
fails.
…
-
## Motivation
We use WASM to support our Cloud Function to be executed in the WASM sandbox. Our cloud function supports a feature to specify number of seconds in timeout when invoking the function.…