DEBSOURCES
Skip Quicknav
sources / golang-github-mimuret-golang-iij-dpf / 0.9.1-2 / pkg / types / count.go
12345678
package types type Count struct { Count int32 `read:"count"` } func (c *Count) SetCount(v int32) { c.Count = v } func (c *Count) GetCount() int32 { return c.Count }