String describes a string value at a given timestamp.
| 12 | |
| 13 | // String describes a string value at a given timestamp. |
| 14 | type String struct { |
| 15 | BaseDatum |
| 16 | mu sync.RWMutex |
| 17 | Value string |
| 18 | } |
| 19 | |
| 20 | // Set sets the value of the String to the value at timestamp. |
| 21 | func (d *String) Set(value string, timestamp time.Time) { |
nothing calls this directly
no outgoing calls
no test coverage detected