ramiroaisen

Results 25 comments of ramiroaisen

> What would the “next handler” mean exactly? It would mean that the request continues the handling process as if it did not match the handler something like the ```(req,...

the next solution also brings the posibility to match two different string formats in the same slot of the path, the handler then check if the format is the required...

Any progress regarding this? Definitly it would make my life easier

did you try: ```svelte import * as FooModal from "./FooModal.svelte" FooModal.someStaticMethod() ```

This would really make a big difference for me, having the ability to pass unique classNames from parent to child components would be a big win

> Many fields in response objects such as Address return different types depending on whether a field is available or not. For example, and address will have the name field...

> You can set the username separately from the address. I just randomly generate the usernames. I'm just setting the username equals to the address... is very simple

> what kind of sorting do you mean? POP3? IMAP? API? I mean for the http api some like ```/users/me/mailboxes/{id}/messages?sortby={date}```

You can create a tokio broadcast channel and subscribe to it in the TcpStream handler fn, then when you get new messages you send them back to the TcpStream, no...