Encoded returns the encoded value of the current value of the setting.
(sv *Values)
| 52 | |
| 53 | // Encoded returns the encoded value of the current value of the setting. |
| 54 | func (d *DurationSetting) Encoded(sv *Values) string { |
| 55 | return d.String(sv) |
| 56 | } |
| 57 | |
| 58 | // EncodedDefault returns the encoded value of the default value of the setting. |
| 59 | func (d *DurationSetting) EncodedDefault() string { |