Sebastian Messmer

Results 228 comments of Sebastian Messmer

I haven't looked at how `rstest` works exactly, and I'm not very familiar with rust attributes either, so my thought might be naive, but at first sight, `#[tokio::test]` is the...

Oh I see, the argument point makes sense. How did you solve this in today's rstest? Do you replace `#[tokio::test]` with your own logic that allows parameters? Are there test...

Ah I see, you're not actually processing the `#[tokio::test]` macro, but you're outputting code that contains it. And you're modifying the user provided test function to add parameters to it....

I guess another option could be to fix `#[tokio::test]` so that it duplicates less boilerplate and instead moves its boilerplate into a shared function

Sounds good. Happy to report back with measurements once you have something.

Another use case: Say the server has a list of data items and either the whole list can change (by adding/removing items) or individual items can change. The reactive system...

Yet another improvement this would have over leptos_sse or leptos_server_events is that those crates can only start the stream once the client is fully loaded and has done another roundtrip...

Oh thinking a bit further about it, is do those chips even have a rdrand instruction?

Hi, thanks for reaching out. The only array type currently supported is `[u8]`. Any other array types aren't supported yet, see [the README](https://github.com/smessmer/binary-layout?tab=readme-ov-file#fixed-size-arrays-other-than-u8-n). Nested views in arrays sound like the...

I think the issue might be that any events that were already sent on the sse channel before the signal is created are ignored.