加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
status.go 723 Bytes
一键复制 编辑 原始数据 按行查看 历史
package influxdb
import (
"fmt"
"github.com/influxdata/influxdb/v2/kit/platform/errors"
)
// Status defines if a resource is active or inactive.
type Status string
const (
// Active status means that the resource can be used.
Active Status = "active"
// Inactive status means that the resource cannot be used.
Inactive Status = "inactive"
)
// Valid determines if a Status value matches the enum.
func (s Status) Valid() error {
switch s {
case Active, Inactive:
return nil
default:
return &errors.Error{
Code: errors.EInvalid,
Msg: fmt.Sprintf("invalid status: must be %v or %v", Active, Inactive),
}
}
}
// Ptr returns the pointer of that status.
func (s Status) Ptr() *Status {
return &s
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化