Results 49 comments of Chrislearn Young

`RustlsAcceptor` has a field `config_stream`, this issue may caused by it. This may rust bug, I am not sure. this issue very similar to this: https://github.com/rust-lang/rust/issues/102211#issuecomment-1371414544

你照着 https://github.com/casbin-rs/poem-casbin 造一个应该没啥难度吧。

Please provide the smallest reproducible repository url or zip file.

You can rename your operation_id for example: ```rust #[endpoint(operation_id="AAAAAAA", tags("todos"), status_codes(200, 404))] pub async fn update_todo(id: PathParam, updated: JsonBody) -> Result { ... } ```

You can use your custom `Namer` to define your rename rule globally. https://github.com/salvo-rs/salvo/blob/main/crates/oapi/src/naming.rs I just don't have time to polish the documentation. PRs for documentation are welcome.

Simply put, I want to reuse types other than `WebTransportSession` and create my own custom `WebTransportSession` to meet specific business requirements. For example, the current `WebTransportSession` is hard-coded with `Request`,...

Salvo 中的 Router 本身是嵌套的,路径只是 Router 中的一个 Filter,所以,是给 Router 命名还是给 Router 中的路径命名?如果Router 不包含 Path 的 Filter 呢?如果多个 Router 存在相同的路径,是都起同样的名字? 会不会很怪异?会不会路径不同又有相同名字?如何检测冲突? 感觉不好实现,也没太大的意义。

You can give document repository a PR. https://github.com/salvo-rs/website

不属于框架层面的东西,你可以自己做。