String returns a pointer to the given string value. Use for setting optional string parameters in RPC calls.
(v string)
| 198 | // String returns a pointer to the given string value. |
| 199 | // Use for setting optional string parameters in RPC calls. |
| 200 | func String(v string) *string { |
| 201 | return &v |
| 202 | } |
| 203 | |
| 204 | // Float64 returns a pointer to the given float64 value. |
| 205 | // Use for setting thresholds: BackgroundCompactionThreshold: Float64(0.80) |
no outgoing calls
searching dependent graphs…