Fetch the repository succeeded.
package eztools
import "errors"
const (
// DefID is the default ID
DefID = 0
// AllID stands for all items, which itself is out of valid ID scope
AllID = DefID - 1
// InvalidID better to be negative to be different from a normal ID
// it is used as indexes into slices, too
InvalidID = DefID - 2 //pairs defined some related
)
var (
// ErrNoValidResults stands for no valid results
ErrNoValidResults = errors.New("no valid results")
// ErrOutOfBound stands for out of bound
ErrOutOfBound = errors.New("out of bound")
// ErrInvalidInput stands for invalid input
ErrInvalidInput = errors.New("invalid input")
// ErrInExistence stands for result from input already in existence
ErrInExistence = errors.New("in existence")
// ErrAccess stands for access failure, such as privilege, collision
ErrAccess = errors.New("access failure")
// ErrAbort stands for abort, such as requesting to exit from UI
ErrAbort = errors.New("abort")
// ErrIncomplete stands for incomplete results, that is maybe minor
ErrIncomplete = errors.New("incomplete results")
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。