Andrea Stedile

Results 4 issues of Andrea Stedile

In the 03-Style document, I read the following sentence: > If the member variable is not expected to change after the initialization, then mark it const. However, we know that...

In the past I have used Java Servlets (now [Jarkarta Servlets](https://jakarta.ee/specifications/servlet/6.0/jakarta-servlet-spec-6.0.html)). With Servlets, I could set a "request attribute". To better explain what a request attribute is, it is easier...

`cargo run --example dial_verify -- --server 127.0.0.1:4444` ``` [steddy@nowhere webrtc]$ cargo run --example dial_verify -- --server 127.0.0.1:4444 Finished dev [unoptimized + debuginfo] target(s) in 0.33s Running `target/debug/examples/dial_verify --server '127.0.0.1:4444'` /home/steddy/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.6/src/poll.rs:532...

Consider the following code using a `JoinHandle`: ```rust if handle.is_finished() { let result = handle.await; match result { Ok(result) => {} Err(error) => {} } } ``` I think that...

A-tokio
M-task
C-feature-request