keysd_rs 0.1.0

gPRC based keysd integration library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
package enum

import "strings"

// String returns a lower cased representation of the enum value.
func (cs CustomStringerEnum) String() string {
	return strings.ToLower(cs.OrigString())
}

// String returns a lower cased representation of the enum value.
func (cs DeprecatedStringerEnum) String() string {
	return strings.ToLower(cs.OrigString())
}