nielsle

Results 47 comments of nielsle

You may be able to use https://github.com/arrayfire/arrayfire-rust

auto-imports allready work in rust-analyzer in many cases (Move cursor to unimported class, press ctrl-. and select import)

The readme is great. Here is a small nitpick. The "short example" does not tell the user to create a `Makefile.toml` and terefore `cargo make serve` did not work for...

Right now It is easier to search though the official CSS docs than it is to search through the Seed docs. So it would be great to be able to...

Would it be possible to solve this in three steps? - Introduce simple enums for inline styles - Introduce an AST to represents a style sheet (Reusing the enums above...

Hmm.. perhaps I should have formulated my message differently, but it could be interesting to see how much can be implemented with slices of enum variants. As far as I...

I would prefer the following. It seems more "rustic" to use constructor methods ~~~ input![ At::title("Enter your name"), At::required(true) ] ~~~ Also have a look at https://github.com/nrc/derive-new and https://github.com/colin-kiegel/rust-derive-builder

Hmm... rust vectors are not linked lists, so if you want to take ownership of an element in the middle of a vector an "drain" it out if the vector,...

@es50678 I think that you are asking for #2393. Also have a look at the Ambassador crate https://github.com/hobofan/ambassador

As far as I can see the 'const_format' crate has a macro that produces a const function that can return an error at compile-time if the arguments do not match....