Yannick Schillo
Yannick Schillo
The following code produces an infinitely growing window: ```rs fn main() { MainWindow::new().unwrap().run().unwrap(); } slint::slint! { import { HorizontalBox, VerticalBox } from "std-widgets.slint"; export component MainWindow inherits Window { HorizontalBox...
I proposed this idea in to handle cases where trailing slashes are relevant. Basically, allow defining a route with a pattern like "/some/path/?" that matches both "/some/path" and "/some/path/". I...
As discussed in , implement macros like `#[any("...")]` and `#[route("...", method = any)]` to create route handlers accepting all HTTP methods (which is currently only possible with something like `app.route("...",...
I have a project where I spawn some background tasks before starting the `HttpServer`, and when the server has stopped, I notify the tasks and join them, which means there...
This was requested a few times already (the most recent one I found is #1159) but I want to elaborate a little more on this issue. I started using actix-web...
When selecting with a shared lock, e.g. `Entity::find().lock_shared()`, the generated query looks like `SELECT ... FROM ... FOR SHARE`, but MariaDB only supports the syntax `SELECT ... FROM ... LOCK...
## Description `OnConflict::do_nothing()` generates a syntactically incorrect query for MySQL/MariaDB: ```rs something::Entity::insert(...) .on_conflict(OnConflict::new() .do_nothing() .to_owned() ) .build(DbBackend::MySql) ``` returns something like: ``` INSERT INTO `something` (...) VALUES (...) ON DUPLICATE...
I think it would be nice to have a builder or a macro for creating a context in one expression like this: ```rs //builder let ctx = ContextBuilder::new() .with("...", ...)...
When trying to build a project that depends on this project and slint at the same time, compilation fails. Cargo.toml: ``` [package] name = "something" version = "0.1.0" edition =...
I am currently working on a project where middleware is applied bottom-up, i.e. the middleware is appended after the services (which is also the case in axum for example, where...