Jean-Marc Le Roux
Jean-Marc Le Roux
Hi there! Great project! As someone who struggled a lot to have proper shader CPU bindings, I really love the idea to leverage Rust code generation + strong typing to...
## How to reproduce `utoipa` version 4.0.0 ```rust #[schema(as = BufferResourceIdentifierObject)] pub struct BufferResourceIdentifierObject { #[serde(rename = "type")] #[schema(default = "buffers")] type_name: String, id: uuid::Uuid, } pub struct BufferResourceRelationshipToOne {...
Hello, I am trying to leverage `actix_extras` to implement a `ResponseBuilder` that returns a response type that derives `IntoResponses`. Here is how I generate the response types: ```rust #[derive(Debug, Clone,...
## How to reproduce Attempt to import a module that will load a `.node` native module. ## Expected behavior The app builds and runs normally. ## Actual behavior Webpack complains...
Hello, Thank you for this great extension! Is it expected to work properly when TLP is installed and running? Are there some possible interferences?
### Describe the bug When I define my Rust structs, I use the `uuid::Uuid` type for the `id` field. For some reason, the created document IDs cannot be deserialized to...
Hello, First of all this is the first time that I write this kind of issue/proposal. So please excuse my bluntness or anything that might be missing/lacking. I'll gladly complete...
Hello, I am following this tutorial: https://component-model.bytecodealliance.org/language-support/rust.html Here is my WIT file: ```wit package example:component; world example { // A function to add two 32bit signed integers. export add: func(x:...
Hello, I'm on Ubuntu 18.04 64 bit using gcc-8. I need to convert `std::wstring IfcObjectDefinition::m_Name->toString()` to an actual UTF-8 `std::string`. I've made sure my input file is encoded using UTF-8....