String converts Uid to base64 string.
()
| 148 | |
| 149 | // String converts Uid to base64 string. |
| 150 | func (uid Uid) String() string { |
| 151 | buf, _ := uid.MarshalText() |
| 152 | return string(buf) |
| 153 | } |
| 154 | |
| 155 | // String32 converts Uid to lowercase base32 string (suitable for file names on Windows). |
| 156 | func (uid Uid) String32() string { |
no test coverage detected