Bool returns a pointer to the given bool value. Use for option fields such as AutoStart, AutoRestart, or LogOptions.Ephemeral: AutoStart: Bool(false) Ephemeral: Bool(true)
(v bool)
| 192 | // AutoStart: Bool(false) |
| 193 | // Ephemeral: Bool(true) |
| 194 | func Bool(v bool) *bool { |
| 195 | return &v |
| 196 | } |
| 197 | |
| 198 | // String returns a pointer to the given string value. |
| 199 | // Use for setting optional string parameters in RPC calls. |
no outgoing calls
searching dependent graphs…