Furkan Guvenc

Results 9 comments of Furkan Guvenc

A am tried too, it is not working

@Carter12s Can you add a warning to Readme so people can see the fork

I added the support in a fork if you are not using ormar db, you can use it: https://github.com/furkan-guvenc/fastapi-crudrouter

I tried that but I am not sure I correctly mirrored [std::num::NonZeroU32](https://doc.rust-lang.org/std/num/struct.NonZeroU32.html) ```rust #[frb(mirror(NonZeroU32))] pub struct _NonZeroU32(u32); #[frb(mirror(InputId, OutputId))] pub struct Id { idx: u32, version: NonZeroU32, } ``` But...

Making it pub didn't work, it gave the exact same error. I think it is just [std::num::NonZeroU32](https://doc.rust-lang.org/std/num/struct.NonZeroU32.html) is defined in this way. It is a 1 field tuple but the...

> You can also treat KeyData as an auto opaque type. Makes sense, thank you.

Serde uses [serde(serialize_with = "path")](https://serde.rs/field-attrs.html#serialize_with), [serde(deserialize_with = "path")](https://serde.rs/field-attrs.html#deserialize_with) or [serde(with = "module")](https://serde.rs/field-attrs.html#with). As I understand with this way you can use serde's serialization with a custom deserialization but I don't...

I can write the PR but I want to be sure it will be a good API.

Can you explain `boilerplate macro` part, where it will be put and how the signature will be like? I was thinking that user can write the trait and we can...