MCPcopy
hub / github.com/kopia/kopia / int64Param

Struct int64Param

internal/contentlog/logparam/logparam.go:73–76  ·  view source on GitHub ↗

int64Param is a parameter that writes a int64 value to the JSON writer.

Source from the content-addressed store, hash-verified

71
72// int64Param is a parameter that writes a int64 value to the JSON writer.
73type int64Param struct {
74 Key string
75 Value int64
76}
77
78func (v int64Param) WriteValueTo(jw *contentlog.JSONWriter) {
79 jw.Int64Field(v.Key, v.Value)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected