We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// Measurement unit. type SemanticsUnit string const ( SemanticsUnitBytes SemanticsUnit = "bytes" SemanticsUnitSeconds SemanticsUnit = "seconds" SemanticsUnitMilliseconds SemanticsUnit = "milliseconds" SemanticsUnitMicroseconds SemanticsUnit = "microseconds" SemanticsUnitNanoseconds SemanticsUnit = "nanoseconds" SemanticsUnitBytesPerSecond SemanticsUnit = "bytes per second" SemanticsUnitHertz SemanticsUnit = "hertz" )
unit: type: string description: Measurement unit enum: - bytes - seconds - milliseconds - microseconds - nanoseconds - bytes per second - hertz
Something like that:
func AllSemanticsUnitValues() []SemanticsUnit { return []SemanticsUnit{ SemanticsUnitHertz, // ... } }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Something like that:
The text was updated successfully, but these errors were encountered: