-
I used some other framework that could auto inject with struct tags.
Something like this:
```go
type Bar interface {
DoSomething()
}
type Foo struct {
Bar `inject:""` // or we can use n…
-
Auto schema collection added in utoipa 5 is really nice! 👍
However it seems that schema in params are not collected. Is it just not implemented yet or not included intentionally?
```rust
use uto…
-
MWE:
```lean
import tactic
structure blah : Type :=
(f1 : ℕ)
(f2 : ℕ)
example : blah :=
begin
refine_struct {..},
case f1 {},
/-
Invalid `case`: there is no goal tagged with suffi…
-
## Problem statement
Embedded struct tags are not honored.
## Swagger specification
```
definitions:
BaseModel:
description: Base Data Model
type: object
properties:
…
-
First off thanks to all developers for making this library. It is really useful. I would request you to generate struct tags for easier json or gocql conversion/usage.
Before using cqlc I used my own…
-
I am trying to unmarshal the struct which is having multiple tags. Some keys don't have tags associated, how to make sure that keys missing tags are not unmarshalled.
```
package main
import (
…
-
With go-toml v2 changing struct tag formatting to match the encoding/json package, it should now be possible to read and use json tags when toml tags are absent.
This behavior would reduce the amou…
-
Description:
I have a Struct with the following field and tags
```PartialDeliveryNumber uint `json:"partialDeliveryNumber" csv:"partial_delivery_number"` ```
I have a test that reads in some jso…
-
It seems like the first call to `step` of the `GradientDescent` optimizer doesn't perform the step operation. I didn't check if this occurs for other optimizers or do other digging, but can do so if t…
-
### Problem description
I wrote a stylesheet using XSLT for converting from the Nix language to XML to autogenerate the rc.xml from Nix.
However i ran into an ordering problem when defining keyb…