I have this custom type wrapper for uuid: ``` #[derive(Debug, Clone, FromRow)] pub struct FileId(Uuid); ``` And I am getting error: `derive(FromRow) works only for structs with named fields` Is there a reason that this does not work or is there a workaround?
I have this custom type wrapper for uuid:
And I am getting error:
derive(FromRow) works only for structs with named fieldsIs there a reason that this does not work or is there a workaround?